CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/EcalBarrelMonitorTasks/interface/EBLaserTask.h

Go to the documentation of this file.
00001 #ifndef EBLaserTask_H
00002 #define EBLaserTask_H
00003 
00004 /*
00005  * \file EBLaserTask.h
00006  *
00007  * $Date: 2012/04/27 13:46:00 $
00008  * $Revision: 1.39 $
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 EBLaserTask: public edm::EDAnalyzer{
00021 
00022 public:
00023 
00025 EBLaserTask(const edm::ParameterSet& ps);
00026 
00028 virtual ~EBLaserTask();
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 EBDigiCollection_;
00070 edm::InputTag EcalPnDiodeDigiCollection_;
00071 edm::InputTag EcalUncalibratedRecHitCollection_;
00072 std::vector<int> laserWavelengths_;
00073 
00074 MonitorElement* meShapeMapL1_[36];
00075 MonitorElement* meAmplMapL1_[36];
00076 MonitorElement* meTimeMapL1_[36];
00077 MonitorElement* meAmplPNMapL1_[36];
00078 MonitorElement* mePnAmplMapG01L1_[36];
00079 MonitorElement* mePnPedMapG01L1_[36];
00080 MonitorElement* mePnAmplMapG16L1_[36];
00081 MonitorElement* mePnPedMapG16L1_[36];
00082 
00083 MonitorElement* meShapeMapL2_[36];
00084 MonitorElement* meAmplMapL2_[36];
00085 MonitorElement* meTimeMapL2_[36];
00086 MonitorElement* meAmplPNMapL2_[36];
00087 MonitorElement* mePnAmplMapG01L2_[36];
00088 MonitorElement* mePnPedMapG01L2_[36];
00089 MonitorElement* mePnAmplMapG16L2_[36];
00090 MonitorElement* mePnPedMapG16L2_[36];
00091 
00092 MonitorElement* meShapeMapL3_[36];
00093 MonitorElement* meAmplMapL3_[36];
00094 MonitorElement* meTimeMapL3_[36];
00095 MonitorElement* meAmplPNMapL3_[36];
00096 MonitorElement* mePnAmplMapG01L3_[36];
00097 MonitorElement* mePnPedMapG01L3_[36];
00098 MonitorElement* mePnAmplMapG16L3_[36];
00099 MonitorElement* mePnPedMapG16L3_[36];
00100 
00101 MonitorElement* meShapeMapL4_[36];
00102 MonitorElement* meAmplMapL4_[36];
00103 MonitorElement* meTimeMapL4_[36];
00104 MonitorElement* meAmplPNMapL4_[36];
00105 MonitorElement* mePnAmplMapG01L4_[36];
00106 MonitorElement* mePnPedMapG01L4_[36];
00107 MonitorElement* mePnAmplMapG16L4_[36];
00108 MonitorElement* mePnPedMapG16L4_[36];
00109 
00110  MonitorElement* meAmplSummaryMapL1_;
00111  MonitorElement* meAmplSummaryMapL2_;
00112  MonitorElement* meAmplSummaryMapL3_;
00113  MonitorElement* meAmplSummaryMapL4_;
00114 
00115 bool init_;
00116 
00117 };
00118 
00119 #endif