00001 #ifndef EEClusterClient_H 00002 #define EEClusterClient_H 00003 00004 /* 00005 * \file EEClusterClient.h 00006 * 00007 * $Date: 2010/01/25 21:12:25 $ 00008 * $Revision: 1.31 $ 00009 * \author G. Della Ricca 00010 * \author F. Cossutti 00011 * \author E. Di Marco 00012 * 00013 */ 00014 00015 #include <vector> 00016 #include <string> 00017 00018 #include "TROOT.h" 00019 #include "TProfile2D.h" 00020 #include "TH1F.h" 00021 00022 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00023 00024 #include "DQM/EcalEndcapMonitorClient/interface/EEClient.h" 00025 00026 class MonitorElement; 00027 class DQMStore; 00028 #ifdef WITH_ECAL_COND_DB 00029 class EcalCondDBInterface; 00030 class RunIOV; 00031 class MonRunIOV; 00032 #endif 00033 00034 class EEClusterClient : public EEClient { 00035 00036 friend class EESummaryClient; 00037 00038 public: 00039 00041 EEClusterClient(const edm::ParameterSet& ps); 00042 00044 virtual ~EEClusterClient(); 00045 00047 void analyze(void); 00048 00050 void beginJob(void); 00051 00053 void endJob(void); 00054 00056 void beginRun(void); 00057 00059 void endRun(void); 00060 00062 void setup(void); 00063 00065 void cleanup(void); 00066 00067 #ifdef WITH_ECAL_COND_DB 00068 00069 bool writeDb(EcalCondDBInterface* econn, RunIOV* runiov, MonRunIOV* moniov, bool& status); 00070 #endif 00071 00073 inline int getEvtPerJob() { return ievt_; } 00074 inline int getEvtPerRun() { return jevt_; } 00075 00076 private: 00077 00078 int ievt_; 00079 int jevt_; 00080 00081 bool cloneME_; 00082 00083 bool verbose_; 00084 bool debug_; 00085 00086 std::string prefixME_; 00087 00088 bool enableCleanup_; 00089 00090 std::vector<int> superModules_; 00091 00092 DQMStore* dqmStore_; 00093 00094 TH1F* h01_[3]; 00095 TProfile2D* h04_[3][2]; 00096 TProfile* h02ProjEta_[3][2]; 00097 TProfile* h02ProjPhi_[3][2]; 00098 TH2F* h03_[2]; 00099 TH1F* h03ProjEta_[2]; 00100 TH1F* h03ProjPhi_[2]; 00101 TH1F* i01_[3]; 00102 TH1F* s01_[3]; 00103 00104 }; 00105 00106 #endif