CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_4/src/DQM/EcalEndcapMonitorTasks/interface/EEClusterTask.h

Go to the documentation of this file.
00001 #ifndef EEClusterTask_H
00002 #define EEClusterTask_H
00003 
00004 /*
00005  * \file EEClusterTask.h
00006  *
00007  * $Date: 2010/02/24 10:11:37 $
00008  * $Revision: 1.23 $
00009  * \author G. Della Ricca
00010  *
00011  */
00012 
00013 #include "FWCore/Framework/interface/EDAnalyzer.h"
00014 #include "FWCore/Framework/interface/Event.h"
00015 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00016 
00017 class MonitorElement;
00018 class DQMStore;
00019 
00020 class EEClusterTask: public edm::EDAnalyzer{
00021 
00022  public:
00023 
00025 EEClusterTask(const edm::ParameterSet& ps);
00026 
00028 virtual ~EEClusterTask();
00029 
00030 protected:
00031 
00033 void analyze(const edm::Event& e, const edm::EventSetup& c);
00034 
00036 void beginJob(void);
00037 
00039 void endJob(void);
00040 
00042 void beginRun(const edm::Run & r, const edm::EventSetup & c);
00043 
00045 void endRun(const edm::Run & r, const edm::EventSetup & c);
00046 
00048 void reset(void);
00049 
00051 void setup(void);
00052 
00054 void cleanup(void);
00055 
00056 private:
00057 
00058 int ievt_;
00059 
00060 DQMStore* dqmStore_;
00061 
00062 std::string prefixME_;
00063 
00064 bool enableCleanup_;
00065 
00066 bool mergeRuns_;
00067 
00068 edm::InputTag EcalRawDataCollection_;
00069 edm::InputTag BasicClusterCollection_;
00070 edm::InputTag SuperClusterCollection_;
00071 edm::InputTag EcalRecHitCollection_;
00072 
00073 MonitorElement* meBCEne_;
00074 MonitorElement* meBCNum_;
00075 MonitorElement* meBCSiz_;
00076 
00077 MonitorElement* meBCEneFwdMap_, *meBCNumFwdMap_, *meBCETFwdMap_, *meBCSizFwdMap_;
00078 MonitorElement* meBCEneFwdMapProjEta_, *meBCNumFwdMapProjEta_, *meBCETFwdMapProjEta_, *meBCSizFwdMapProjEta_;
00079 MonitorElement* meBCEneFwdMapProjPhi_, *meBCNumFwdMapProjPhi_, *meBCETFwdMapProjPhi_, *meBCSizFwdMapProjPhi_;
00080 
00081 MonitorElement* meBCEneBwdMap_, *meBCNumBwdMap_, *meBCETBwdMap_, *meBCSizBwdMap_;
00082 MonitorElement* meBCEneBwdMapProjEta_, *meBCNumBwdMapProjEta_, *meBCETBwdMapProjEta_, *meBCSizBwdMapProjEta_;
00083 MonitorElement* meBCEneBwdMapProjPhi_, *meBCNumBwdMapProjPhi_, *meBCETBwdMapProjPhi_, *meBCSizBwdMapProjPhi_;
00084 
00085 MonitorElement* meSCEne_;
00086 MonitorElement* meSCNum_;
00087 MonitorElement* meSCSiz_;  
00088 
00089 MonitorElement* meSCCrystalSiz_;
00090 MonitorElement* meSCSeedEne_;
00091 MonitorElement* meSCEne2_;
00092 MonitorElement* meSCEneVsEMax_;
00093 MonitorElement* meSCEneLowScale_;
00094 MonitorElement* meSCSeedMapOcc_[2];
00095 MonitorElement* meSCMapSingleCrystal_[2];
00096 
00097 MonitorElement* mes1s9_;
00098 MonitorElement* mes1s9thr_;
00099 MonitorElement* mes9s25_;
00100 MonitorElement* meInvMassPi0_;
00101 MonitorElement* meInvMassJPsi_;
00102 MonitorElement* meInvMassZ0_;
00103 MonitorElement* meInvMassHigh_;
00104 MonitorElement* meInvMassPi0Sel_;
00105 MonitorElement* meInvMassJPsiSel_;
00106 MonitorElement* meInvMassZ0Sel_;
00107 MonitorElement* meInvMassHighSel_;
00108 
00109 bool init_;
00110 
00111 float thrS4S9_, thrClusEt_, thrCandEt_;
00112 
00113 };
00114 
00115 #endif