CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CaloTowersDQMClient.cc
Go to the documentation of this file.
3 
8 
11 
13 {
14 
15  outputFile_ = iConfig.getUntrackedParameter<std::string>("outputFile", "myfile.root");
16  debug_ = false;
17  verbose_ = false;
18  dirName_=iConfig.getParameter<std::string>("DQMDirName");
19 
20  }
21 
22 
24 {
25 
26 }
27 
29 {
30 
31 
32 }
33 
34 
36 {
37 
38 }
39 
40 
41 // called after entering the CaloTowersD/CaloTowersTask directory
42 // hcalMEs are within that directory
43 int CaloTowersDQMClient::CaloTowersEndjob(const std::vector<MonitorElement*> &hcalMEs){
44 
45  int useAllHistos = 0;
46  MonitorElement* Ntowers_vs_ieta =0;
47  MonitorElement* mapEnergy_N =0, *mapEnergy_E =0, *mapEnergy_H =0, *mapEnergy_EH =0;
48  MonitorElement* occupancy_map =0, *occupancy_vs_ieta =0;
49  for(unsigned int ih=0; ih<hcalMEs.size(); ih++){
50  if( strcmp(hcalMEs[ih]->getName().c_str(), "Ntowers_per_event_vs_ieta") ==0 ){
51  Ntowers_vs_ieta = hcalMEs[ih];
52  }
53  if( strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_Nentries") ==0 ){
54  mapEnergy_N = hcalMEs[ih];
55  }
56  if( strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_energy_H") ==0 ){
57  useAllHistos++; mapEnergy_H = hcalMEs[ih];
58  }
59  if( strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_energy_E") ==0 ){
60  useAllHistos++; mapEnergy_E = hcalMEs[ih];
61  }
62  if( strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_energy_EH") ==0 ){
63  useAllHistos++; mapEnergy_EH = hcalMEs[ih];
64  }
65  if( strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_occupancy") ==0 ){
66  occupancy_map = hcalMEs[ih];
67  }
68  if( strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_occupancy_vs_ieta") ==0 ){
69  occupancy_vs_ieta = hcalMEs[ih];
70  }
71 
72  }
73  if( useAllHistos !=0 && useAllHistos !=3 ) return 0;
74 
75  double nevent = mapEnergy_N->getEntries();
76  if(verbose_) std::cout<<"nevent : "<<nevent<<std::endl;
77 
78  // mean number of towers per ieta
79  int nx = Ntowers_vs_ieta->getNbinsX();
80  float cont;
81  float fev = float(nevent);
82 
83  for (int i = 1; i <= nx; i++) {
84  cont = Ntowers_vs_ieta -> getBinContent(i) / fev ;
85  Ntowers_vs_ieta -> setBinContent(i,cont);
86  }
87 
88  // mean energies & occupancies evaluation
89 
90  nx = mapEnergy_N->getNbinsX();
91  int ny = mapEnergy_N->getNbinsY();
92  float cnorm;
93  float phi_factor;
94 
95  for (int i = 1; i <= nx; i++) {
96  float sumphi = 0.;
97 
98  for (int j = 1; j <= ny; j++) {
99 
100  // Emean
101  cnorm = mapEnergy_N -> getBinContent(i,j);
102  //Phi histos are not used in the macros
103  if(cnorm > 0.000001 && useAllHistos) {
104 
105  cont = mapEnergy_E -> getBinContent(i,j) / cnorm ;
106  mapEnergy_E -> setBinContent(i,j,cont);
107 
108  cont = mapEnergy_H -> getBinContent(i,j) / cnorm ;
109  mapEnergy_H -> setBinContent(i,j,cont);
110 
111  cont = mapEnergy_EH -> getBinContent(i,j) / cnorm ;
112  mapEnergy_EH -> setBinContent(i,j,cont);
113  }
114 
115  // Occupancy (needed for occupancy vs ieta)
116  cnorm = occupancy_map -> getBinContent(i,j) / fev;
117  if(cnorm > 1.e-30) occupancy_map -> setBinContent(i,j,cnorm);
118 
119  sumphi += cnorm;
120 
121  } // end of iphy cycle (j)
122 
123  //Occupancy vs ieta histo is drawn
124  // phi-factor evaluation for occupancy_vs_ieta calculation
125  int ieta = i - 42; // -41 -1, 0 40
126  if(ieta >=0 ) ieta +=1; // -41 -1, 1 41 - to make it detector-like
127 
128  if(ieta >= -20 && ieta <= 20 )
129  {phi_factor = 72.;}
130  else {
131  if(ieta >= 40 || ieta <= -40 ) {phi_factor = 18.;}
132  else
133  phi_factor = 36.;
134  }
135  if(ieta >= 0) ieta -= 1; // -41 -1, 0 40 - to bring back to histo num
136 
137  cnorm = sumphi / phi_factor;
138  occupancy_vs_ieta->Fill(double(ieta), cnorm);
139 
140  } // end of ieta cycle (i)
141 
142  return 1;
143 
144 }
145 
147 {
148 
149  igetter.setCurrentFolder(dirName_);
150  if (verbose_) std::cout << "\nrunClient" << std::endl;
151 
152  std::vector<MonitorElement*> hcalMEs;
153 
154  // Since out folders are fixed to three, we can just go over these three folders
155  // i.e., CaloTowersD/CaloTowersTask, HcalRecHitsD/HcalRecHitTask, NoiseRatesV/NoiseRatesTask.
156  std::vector<std::string> fullPathHLTFolders = igetter.getSubdirs();
157  for(unsigned int i=0;i<fullPathHLTFolders.size();i++) {
158 
159  if (verbose_) std::cout <<"\nfullPath: "<< fullPathHLTFolders[i] << std::endl;
160  igetter.setCurrentFolder(fullPathHLTFolders[i]);
161 
162  std::vector<std::string> fullSubPathHLTFolders = igetter.getSubdirs();
163  for(unsigned int j=0;j<fullSubPathHLTFolders.size();j++) {
164 
165  if (verbose_) std::cout <<"fullSub: "<<fullSubPathHLTFolders[j] << std::endl;
166 
167  if( strcmp(fullSubPathHLTFolders[j].c_str(), "CaloTowersD/CaloTowersTask") ==0 ){
168  hcalMEs = igetter.getContents(fullSubPathHLTFolders[j]);
169  if (verbose_) std::cout <<"hltMES size : "<<hcalMEs.size()<<std::endl;
170  if( !CaloTowersEndjob(hcalMEs) ) std::cout<<"\nError in CaloTowersEndjob!"<<std::endl<<std::endl;
171  }
172 
173  }
174 
175  }
176 
177 }
178 
179 
180 
std::vector< MonitorElement * > getContents(Args &&...args)
Definition: DQMStore.h:197
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
int CaloTowersEndjob(const std::vector< MonitorElement * > &hcalMEs)
tuple cont
load Luminosity info ##
Definition: generateEDF.py:622
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
double getEntries(void) const
get # of entries
int getNbinsY(void) const
get # of bins in Y-axis
int nevent
Definition: AMPTWrapper.h:74
int j
Definition: DBlmapReader.cc:9
virtual void beginRun(const edm::Run &run, const edm::EventSetup &c)
virtual void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
virtual void beginJob(void)
std::vector< std::string > getSubdirs(void)
Definition: DQMStore.cc:322
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:346
int getNbinsX(void) const
get # of bins in X-axis
tuple cout
Definition: gather_cfg.py:145
CaloTowersDQMClient(const edm::ParameterSet &)
Definition: Run.h:43