emcObjectFillerManager.h

Go to the documentation of this file.
00001 #ifndef __emcObjectFillerManager_h__
00002 #define __emcObjectFillerManager_h__
00003 
00004 class PHObject;
00005 class PHCompositeNode;
00006 
00011 class emcObjectFillerManager
00012 {
00013 public:
00014 
00015   static bool fill(PHCompositeNode* topNode, PHObject& destination);
00016 
00017   static bool isFillerAvailable(PHObject& destination);
00018 
00019   static int verbose(void) { return fVerbose; }
00020 
00021   static void verbose(int verbose) { fVerbose=verbose; }
00022 
00023 private:
00024   static int fVerbose;
00025 };
00026 
00027 #endif