00001 #ifndef Demo_PFRootEvent_MyPFRootEventManager_h 00002 #define Demo_PFRootEvent_MyPFRootEventManager_h 00003 00004 #include "RecoParticleFlow/PFRootEvent/interface/PFRootEventManager.h" 00005 00006 /* 00007 Template for a personal analysis class to study particle flow. 00008 WARNING: Do not edit this file ! 00009 create an analysis class for you using this script: 00010 MyPFRootEventManager/createAnalysisClass.pl 00011 00012 run: 00013 createAnalysisClass.pl -h 00014 for more information. 00015 */ 00016 00017 class MyPFRootEventManager : public PFRootEventManager { 00018 00019 public: 00020 MyPFRootEventManager(const char* file); 00021 00022 ~MyPFRootEventManager(); 00023 00024 bool processEntry(int entry); 00025 void write(); 00026 00027 00028 private: 00029 00030 }; 00031 00032 #endif