![]() |
![]() |
00001 #ifndef TrackerHitAnalyzer_H 00002 #define TrackerHitAnalyzer_H 00003 00004 /* 00005 * \file TrackerHitAnalyzer.h 00006 * 00007 * $Date: 2008/02/29 20:49:22 $ 00008 * $Revision: 1.3 $ 00009 * \author F. Cossutti 00010 * 00011 */ 00012 // framework & common header files 00013 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00014 #include "FWCore/Framework/interface/Frameworkfwd.h" 00015 #include "FWCore/Framework/interface/EDAnalyzer.h" 00016 00017 #include "FWCore/Framework/interface/Event.h" 00018 #include "FWCore/Framework/interface/EventSetup.h" 00019 #include "FWCore/Framework/interface/ESHandle.h" 00020 #include "FWCore/Framework/interface/MakerMacros.h" 00021 #include "DataFormats/Common/interface/Handle.h" 00022 00023 #include "FWCore/MessageLogger/interface/MessageLogger.h" 00024 #include "FWCore/ParameterSet/interface/InputTag.h" 00025 00026 #include "Geometry/CommonDetUnit/interface/GeomDetUnit.h" 00027 #include "DataFormats/DetId/interface/DetId.h" 00028 00029 #include "FWCore/ServiceRegistry/interface/Service.h" 00030 #include "DQMServices/Core/interface/DQMStore.h" 00031 00032 #include "DQMServices/Core/interface/MonitorElement.h" 00033 00034 #include <fstream> 00035 #include <map> 00036 #include <iostream> 00037 #include <stdlib.h> 00038 #include <string> 00039 #include <memory> 00040 #include <vector> 00041 00042 00043 class TrackerHitAnalyzer: public edm::EDAnalyzer { 00044 00045 public: 00046 00048 TrackerHitAnalyzer(const edm::ParameterSet& ps); 00049 00051 ~TrackerHitAnalyzer(); 00052 00053 protected: 00054 00056 void analyze(const edm::Event& e, const edm::EventSetup& c); 00057 00058 // BeginJob 00059 void beginJob(const edm::EventSetup& c); 00060 00061 // EndJob 00062 void endJob(void); 00063 00064 //void BookTestHistos(Char_t sname, int nbin, float *xmin, float *xmax); 00065 00066 private: 00067 00068 edm::InputTag SiTIBLowSrc_; 00069 edm::InputTag SiTIBHighSrc_; 00070 edm::InputTag SiTOBLowSrc_; 00071 edm::InputTag SiTOBHighSrc_; 00072 edm::InputTag SiTIDLowSrc_; 00073 edm::InputTag SiTIDHighSrc_; 00074 edm::InputTag SiTECLowSrc_; 00075 edm::InputTag SiTECHighSrc_; 00076 edm::InputTag PxlBrlLowSrc_; 00077 edm::InputTag PxlBrlHighSrc_; 00078 edm::InputTag PxlFwdLowSrc_; 00079 edm::InputTag PxlFwdHighSrc_; 00080 00081 // edm::ParameterSet config_; 00082 00083 00084 bool verbose_; 00085 00086 DQMStore* fDBE; 00087 00088 std::string fOutputFile; 00089 00090 MonitorElement* h1e[12]; 00091 MonitorElement* h2e[12]; 00092 MonitorElement* h3e[12]; 00093 MonitorElement* h4e[12]; 00094 MonitorElement* h5e[12]; 00095 MonitorElement* h6e[12]; 00096 00097 MonitorElement* h1ex[12]; 00098 MonitorElement* h2ex[12]; 00099 MonitorElement* h3ex[12]; 00100 MonitorElement* h4ex[12]; 00101 MonitorElement* h5ex[12]; 00102 MonitorElement* h6ex[12]; 00103 00104 MonitorElement* h1ey[12]; 00105 MonitorElement* h2ey[12]; 00106 MonitorElement* h3ey[12]; 00107 MonitorElement* h4ey[12]; 00108 MonitorElement* h5ey[12]; 00109 MonitorElement* h6ey[12]; 00110 00111 MonitorElement* h1ez[12]; 00112 MonitorElement* h2ez[12]; 00113 MonitorElement* h3ez[12]; 00114 MonitorElement* h4ez[12]; 00115 MonitorElement* h5ez[12]; 00116 MonitorElement* h6ez[12]; 00117 00118 MonitorElement* h1lx[12]; 00119 MonitorElement* h2lx[12]; 00120 MonitorElement* h3lx[12]; 00121 MonitorElement* h4lx[12]; 00122 MonitorElement* h5lx[12]; 00123 MonitorElement* h6lx[12]; 00124 00125 MonitorElement* h1ly[12]; 00126 MonitorElement* h2ly[12]; 00127 MonitorElement* h3ly[12]; 00128 MonitorElement* h4ly[12]; 00129 MonitorElement* h5ly[12]; 00130 MonitorElement* h6ly[12]; 00131 }; 00132 00133 #endif