CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes
RecAnalyzerMinbias Class Reference
Inheritance diagram for RecAnalyzerMinbias:
edm::EDAnalyzer edm::EDConsumerBase

Classes

struct  myInfo
 

Public Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
virtual void beginJob ()
 
virtual void endJob ()
 
 RecAnalyzerMinbias (const edm::ParameterSet &)
 
 ~RecAnalyzerMinbias ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

void analyzeHcal (const HBHERecHitCollection &, const HFRecHitCollection &, const HcalRespCorrs *, int)
 

Private Attributes

int cells
 
int depth
 
std::string fOutputFileName
 
std::vector< unsigned int > hcalID
 
char hf_name [700]
 
char hf_title [700]
 
std::vector< TH1D * > histo
 
TFile * hOutputFile
 
int ieta
 
bool ignoreL1
 
int iphi
 
float mom0_MB
 
float mom1_MB
 
float mom2_MB
 
float mom3_MB
 
float mom4_MB
 
std::map< std::pair< int,
HcalDetId >, myInfo
myMap
 
int mysubd
 
TTree * myTree
 
char name [700]
 
double rnnum
 
double rnnumber
 
bool theRecalib
 
char title [700]
 
edm::EDGetTokenT
< HBHERecHitCollection
tok_hbherecoMB_
 
edm::EDGetTokenT
< HFRecHitCollection
tok_hfrecoMB_
 
edm::EDGetTokenT
< L1GlobalTriggerObjectMapRecord
tok_hltL1GtMap_
 
int trigbit
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 35 of file RecAnalyzerMinbias.cc.

Constructor & Destructor Documentation

RecAnalyzerMinbias::RecAnalyzerMinbias ( const edm::ParameterSet iConfig)
explicit

Definition at line 74 of file RecAnalyzerMinbias.cc.

References funct::abs(), gather_cfg::cout, depth, fOutputFileName, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), HcalBarrel, HcalEndcap, HcalForward, hcalID, HcalOuter, ieta, ignoreL1, HLT_25ns14e33_v1_cff::InputTag, iphi, relval_steps::k, AlCaHLTBitMon_QueryRunRegistry::string, theRecalib, tok_hbherecoMB_, tok_hfrecoMB_, and tok_hltL1GtMap_.

74  {
75 
76  // get name of output file with histogramms
77  fOutputFileName = iConfig.getUntrackedParameter<std::string>("HistOutFile");
78  theRecalib = iConfig.getParameter<bool>("Recalib");
79  ignoreL1 = iConfig.getUntrackedParameter<bool>("IgnoreL1", false);
80  std::vector<int> ieta = iConfig.getUntrackedParameter<std::vector<int>>("HcalIeta");
81  std::vector<int> iphi = iConfig.getUntrackedParameter<std::vector<int>>("HcalIphi");
82  std::vector<int> depth= iConfig.getUntrackedParameter<std::vector<int>>("HcalDepth");
83 
84  // get token names of modules, producing object collections
85  tok_hbherecoMB_ = consumes<HBHERecHitCollection>(iConfig.getParameter<edm::InputTag>("hbheInputMB"));
86  tok_hfrecoMB_ = consumes<HFRecHitCollection>(iConfig.getParameter<edm::InputTag>("hfInputMB"));
87  tok_hltL1GtMap_ = consumes<L1GlobalTriggerObjectMapRecord>(edm::InputTag("hltL1GtObjectMap"));
88 
89 #ifdef DebugLog
90  std::cout << "Output File: " << fOutputFileName << " Flags (ReCalib): "
91  << theRecalib << " (IgnoreL1): " << ignoreL1 << " with "
92  << ieta.size() << " detId for full histogram" << std::endl;
93 #endif
94  for (unsigned int k=0; k<ieta.size(); ++k) {
95  HcalSubdetector subd = ((std::abs(ieta[k]) > 29) ? HcalForward :
96  (std::abs(ieta[k]) > 16) ? HcalEndcap :
97  ((std::abs(ieta[k]) == 16) && (depth[k] == 3)) ? HcalEndcap :
98  (depth[k] == 4) ? HcalOuter : HcalBarrel);
99  unsigned int id = (HcalDetId(subd,ieta[k],iphi[k],depth[k])).rawId();
100  hcalID.push_back(id);
101 #ifdef DebugLog
102  std::cout << "DetId[" << k << "] " << HcalDetId(id) << std::endl;
103 #endif
104  }
105 }
std::vector< unsigned int > hcalID
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< HFRecHitCollection > tok_hfrecoMB_
HcalSubdetector
Definition: HcalAssistant.h:31
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
edm::EDGetTokenT< HBHERecHitCollection > tok_hbherecoMB_
tuple cout
Definition: gather_cfg.py:121
edm::EDGetTokenT< L1GlobalTriggerObjectMapRecord > tok_hltL1GtMap_
RecAnalyzerMinbias::~RecAnalyzerMinbias ( )

Definition at line 107 of file RecAnalyzerMinbias.cc.

107 {}

Member Function Documentation

void RecAnalyzerMinbias::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 191 of file RecAnalyzerMinbias.cc.

References analyzeHcal(), gather_cfg::cout, edm::EventSetup::get(), edm::Event::getByToken(), ignoreL1, edm::HandleBase::isValid(), convertSQLiteXML::ok, edm::Handle< T >::product(), edm::ESHandle< class >::product(), mathSSE::return(), rnnum, edm::Event::run(), edm::SortedCollection< T, SORT >::size(), theRecalib, tok_hbherecoMB_, tok_hfrecoMB_, and tok_hltL1GtMap_.

191  {
192 
193  rnnum = (float)iEvent.run();
194  const HcalRespCorrs* myRecalib=0;
195  if (theRecalib ) {
196  edm::ESHandle <HcalRespCorrs> recalibCorrs;
197  iSetup.get<HcalRespCorrsRcd>().get("recalibrate",recalibCorrs);
198  myRecalib = recalibCorrs.product();
199  } // theRecalib
200 
202  iEvent.getByToken(tok_hbherecoMB_, hbheMB);
203  if (!hbheMB.isValid()) {
204  edm::LogInfo("AnalyzerMB") << "HcalCalibAlgos: Error! can't get hbhe product!";
205  return ;
206  }
207  const HBHERecHitCollection HithbheMB = *(hbheMB.product());
208 #ifdef debugLog
209  std::cout << "HBHE MB size of collection " << HithbheMB.size() << std::endl;
210 #endif
211  if (HithbheMB.size() < 5100) {
212  edm::LogWarning("AnalyzerMB") << "HBHE problem " << rnnum << " size "
213  << HithbheMB.size();
214  return;
215  }
216 
218  iEvent.getByToken(tok_hfrecoMB_, hfMB);
219  if (!hfMB.isValid()) {
220  edm::LogInfo("AnalyzerMB") << "HcalCalibAlgos: Error! can't get hbhe product!";
221  return ;
222  }
223  const HFRecHitCollection HithfMB = *(hfMB.product());
224 #ifdef debugLog
225  std::cout << "HF MB size of collection " << HithfMB.size() << std::endl;
226 #endif
227  if (HithfMB.size() < 1700) {
228  edm::LogWarning("AnalyzerMB") << "HF problem " << rnnum << " size "
229  << HithfMB.size();
230  return;
231  }
232 
233  if (ignoreL1) {
234  analyzeHcal(HithbheMB, HithfMB, myRecalib, 1);
235  } else {
237  iEvent.getByToken(tok_hltL1GtMap_, gtObjectMapRecord);
238  if (gtObjectMapRecord.isValid()) {
239  const std::vector<L1GlobalTriggerObjectMap>& objMapVec = gtObjectMapRecord->gtObjectMap();
240  bool ok(false);
241  for (std::vector<L1GlobalTriggerObjectMap>::const_iterator itMap = objMapVec.begin();
242  itMap != objMapVec.end(); ++itMap) {
243  bool resultGt = (*itMap).algoGtlResult();
244  if (resultGt) {
245  int algoBit = (*itMap).algoBitNumber();
246  analyzeHcal(HithbheMB, HithfMB, myRecalib, algoBit);
247  ok = true;
248  }
249  }
250  if (!ok) {
251 #ifdef debugLog
252  std::cout << "No passed L1 Trigger found" << std::endl;
253 #endif
254  }
255  }
256  }
257 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:449
return((rh^lh)&mask)
edm::EDGetTokenT< HFRecHitCollection > tok_hfrecoMB_
RunNumber_t run() const
Definition: Event.h:85
void analyzeHcal(const HBHERecHitCollection &, const HFRecHitCollection &, const HcalRespCorrs *, int)
bool isValid() const
Definition: HandleBase.h:75
T const * product() const
Definition: Handle.h:81
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:86
edm::EDGetTokenT< HBHERecHitCollection > tok_hbherecoMB_
size_type size() const
tuple cout
Definition: gather_cfg.py:121
edm::EDGetTokenT< L1GlobalTriggerObjectMapRecord > tok_hltL1GtMap_
void RecAnalyzerMinbias::analyzeHcal ( const HBHERecHitCollection HithbheMB,
const HFRecHitCollection HithfMB,
const HcalRespCorrs myRecalib,
int  algoBit 
)
private

Definition at line 259 of file RecAnalyzerMinbias.cc.

References edm::SortedCollection< T, SORT >::begin(), edm::SortedCollection< T, SORT >::end(), CaloRecHit::energy(), HcalRespCorr::getValue(), HcalCondObjectContainer< Item >::getValues(), hcalID, histo, i, info(), myMap, DetId::rawId(), rnnum, and theRecalib.

Referenced by analyze().

262  {
263  // Signal part for HB HE
264  for (HBHERecHitCollection::const_iterator hbheItr=HithbheMB.begin();
265  hbheItr!=HithbheMB.end(); hbheItr++) {
266  // Recalibration of energy
267  float icalconst=1.;
268  DetId mydetid = hbheItr->id().rawId();
269  if (theRecalib) icalconst = myRecalib->getValues(mydetid)->getValue();
270  HBHERecHit aHit(hbheItr->id(),hbheItr->energy()*icalconst,hbheItr->time());
271  double energyhit = aHit.energy();
272  DetId id = (*hbheItr).detid();
273  HcalDetId hid = HcalDetId(id);
274 
275  for (unsigned int i = 0; i < hcalID.size(); i++) {
276  if (hcalID[i] == id.rawId()) {
277  histo[i]->Fill(energyhit);
278  break;
279  }
280  }
281  std::map<std::pair<int,HcalDetId>,myInfo>::iterator itr1 = myMap.find(std::pair<int,HcalDetId>(algoBit,hid));
282  if (itr1 == myMap.end()) {
283  myInfo info;
284  myMap[std::pair<int,HcalDetId>(algoBit,hid)] = info;
285  itr1 = myMap.find(std::pair<int,HcalDetId>(algoBit,hid));
286  }
287  itr1->second.theMB0++;
288  itr1->second.theMB1 += energyhit;
289  itr1->second.theMB2 += (energyhit*energyhit);
290  itr1->second.theMB3 += (energyhit*energyhit*energyhit);
291  itr1->second.theMB4 += (energyhit*energyhit*energyhit*energyhit);
292  itr1->second.runcheck = rnnum;
293  } // HBHE_MB
294 
295  // Signal part for HF
296  for (HFRecHitCollection::const_iterator hfItr=HithfMB.begin();
297  hfItr!=HithfMB.end(); hfItr++) {
298  // Recalibration of energy
299  float icalconst=1.;
300  DetId mydetid = hfItr->id().rawId();
301  if (theRecalib) icalconst = myRecalib->getValues(mydetid)->getValue();
302  HFRecHit aHit(hfItr->id(),hfItr->energy()*icalconst,hfItr->time());
303 
304  double energyhit = aHit.energy();
305  DetId id = (*hfItr).detid();
306  HcalDetId hid = HcalDetId(id);
307  for (unsigned int i = 0; i < hcalID.size(); i++) {
308  if (hcalID[i] == id.rawId()) {
309  histo[i]->Fill(energyhit);
310  break;
311  }
312  }
313  //
314  // Remove PMT hits
315  //
316  if (fabs(energyhit) > 40.) continue;
317  std::map<std::pair<int,HcalDetId>,myInfo>::iterator itr1 = myMap.find(std::pair<int,HcalDetId>(algoBit,hid));
318  if (itr1 == myMap.end()) {
319  myInfo info;
320  myMap[std::pair<int,HcalDetId>(algoBit,hid)] = info;
321  itr1 = myMap.find(std::pair<int,HcalDetId>(algoBit,hid));
322  }
323  itr1->second.theMB0++;
324  itr1->second.theMB1 += energyhit;
325  itr1->second.theMB2 += (energyhit*energyhit);
326  itr1->second.theMB3 += (energyhit*energyhit*energyhit);
327  itr1->second.theMB4 += (energyhit*energyhit*energyhit*energyhit);
328  itr1->second.runcheck = rnnum;
329  }
330 }
std::vector< unsigned int > hcalID
int i
Definition: DBlmapReader.cc:9
static const TGPicture * info(bool iBackgroundIsBlack)
std::vector< HBHERecHit >::const_iterator const_iterator
const Item * getValues(DetId fId, bool throwOnFail=true) const
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
float energy() const
Definition: CaloRecHit.h:17
std::map< std::pair< int, HcalDetId >, myInfo > myMap
const_iterator end() const
Definition: DetId.h:18
float getValue() const
Definition: HcalRespCorr.h:20
std::vector< TH1D * > histo
const_iterator begin() const
void RecAnalyzerMinbias::beginJob ( void  )
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 109 of file RecAnalyzerMinbias.cc.

References cells, depth, fOutputFileName, AnalysisDataFormats_SUSYBSMObjects::hc, hcalID, histo, hOutputFile, i, ieta, iphi, mom0_MB, mom1_MB, mom2_MB, mom4_MB, myMap, mysubd, myTree, name, mathSSE::return(), rnnumber, AlCaHLTBitMon_QueryRunRegistry::string, title, trigbit, SiStripMonitorClusterAlca_cfi::xmax, and SiStripMonitorClusterAlca_cfi::xmin.

109  {
110  std::string hc[5] = {"Empty", "HB", "HE", "HO", "HF"};
111  for (unsigned int i=0; i<hcalID.size(); i++) {
112  HcalDetId id = HcalDetId(hcalID[i]);
113  int subdet = id.subdetId();
114  sprintf (name, "%s%d_%d_%d", hc[subdet].c_str(), id.ieta(), id.iphi(), id.depth());
115  sprintf (title, "Energy Distribution for %s ieta %d iphi %d depth %d", hc[subdet].c_str(), id.ieta(), id.iphi(), id.depth());
116  double xmin = (subdet == 4) ? -10 : -1;
117  double xmax = (subdet == 4) ? 90 : 9;
118  TH1D* hh = new TH1D(name, title, 50, xmin, xmax);
119  histo.push_back(hh);
120  };
121 
122  hOutputFile = new TFile( fOutputFileName.c_str(), "RECREATE" ) ;
123  myTree = new TTree("RecJet","RecJet Tree");
124  myTree->Branch("cells", &cells, "cells/I");
125  myTree->Branch("mysubd", &mysubd, "mysubd/I");
126  myTree->Branch("depth", &depth, "depth/I");
127  myTree->Branch("ieta", &ieta, "ieta/I");
128  myTree->Branch("iphi", &iphi, "iphi/I");
129  myTree->Branch("mom0_MB", &mom0_MB, "mom0_MB/F");
130  myTree->Branch("mom1_MB", &mom1_MB, "mom1_MB/F");
131  myTree->Branch("mom2_MB", &mom2_MB, "mom2_MB/F");
132  myTree->Branch("mom3_MB", &mom2_MB, "mom3_MB/F");
133  myTree->Branch("mom4_MB", &mom4_MB, "mom4_MB/F");
134  myTree->Branch("trigbit", &trigbit, "trigbit/I");
135  myTree->Branch("rnnumber", &rnnumber, "rnnumber/D");
136  myMap.clear();
137  return ;
138 }
std::vector< unsigned int > hcalID
int i
Definition: DBlmapReader.cc:9
return((rh^lh)&mask)
std::map< std::pair< int, HcalDetId >, myInfo > myMap
susybsm::HSCParticleCollection hc
Definition: classes.h:25
std::vector< TH1D * > histo
void RecAnalyzerMinbias::endJob ( void  )
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 143 of file RecAnalyzerMinbias.cc.

References cells, gather_cfg::cout, depth, histo, hOutputFile, i, ieta, info(), iphi, python.multivaluedict::map(), mom0_MB, mom1_MB, mom2_MB, mom3_MB, mom4_MB, myMap, mysubd, myTree, rnnumber, RecAnalyzerMinbias::myInfo::runcheck, RecAnalyzerMinbias::myInfo::theMB0, RecAnalyzerMinbias::myInfo::theMB1, RecAnalyzerMinbias::myInfo::theMB2, RecAnalyzerMinbias::myInfo::theMB3, RecAnalyzerMinbias::myInfo::theMB4, and trigbit.

143  {
144  cells = 0;
145  for (std::map<std::pair<int,HcalDetId>,myInfo>::const_iterator itr=myMap.begin(); itr != myMap.end(); ++itr) {
146 #ifdef debugLog
147  std::cout << "Fired trigger bit number " << itr->first.first << std::endl;
148 #endif
149  myInfo info = itr->second;
150  if (info.theMB0 > 0) {
151  mom0_MB = info.theMB0;
152  mom1_MB = info.theMB1;
153  mom2_MB = info.theMB2;
154  mom3_MB = info.theMB3;
155  mom4_MB = info.theMB4;
156  rnnumber = info.runcheck;
157  trigbit = itr->first.first;
158  mysubd = itr->first.second.subdet();
159  depth = itr->first.second.depth();
160  iphi = itr->first.second.iphi();
161  ieta = itr->first.second.ieta();
162 #ifdef debugLog
163  std::cout << " Result= " << trigbit << " " << mysubd << " " << ieta
164  << " " << iphi << " mom0 " << mom0_MB << " mom1 " << mom1_MB
165  << " mom2 " << mom2_MB << " mom3 " << mom3_MB << " mom4 "
166  << mom4_MB << std::endl;
167 #endif
168  myTree->Fill();
169  cells++;
170  }
171  }
172 #ifdef debugLog
173  std::cout << "cells" << " " << cells << std::endl;
174 #endif
175 
176 
177  hOutputFile->Write();
178  hOutputFile->cd();
179  for(unsigned int i = 0; i<histo.size(); i++){
180  histo[i]->Write();
181  }
182  myTree->Write();
183  hOutputFile->Close() ;
184 }
int i
Definition: DBlmapReader.cc:9
static const TGPicture * info(bool iBackgroundIsBlack)
std::map< std::pair< int, HcalDetId >, myInfo > myMap
tuple cout
Definition: gather_cfg.py:121
std::vector< TH1D * > histo

Member Data Documentation

int RecAnalyzerMinbias::cells
private

Definition at line 59 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

int RecAnalyzerMinbias::depth
private
std::string RecAnalyzerMinbias::fOutputFileName
private

Definition at line 50 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and RecAnalyzerMinbias().

std::vector<unsigned int> RecAnalyzerMinbias::hcalID
private

Definition at line 55 of file RecAnalyzerMinbias.cc.

Referenced by analyzeHcal(), beginJob(), and RecAnalyzerMinbias().

char RecAnalyzerMinbias::hf_name[700]
private

Definition at line 49 of file RecAnalyzerMinbias.cc.

char RecAnalyzerMinbias::hf_title[700]
private

Definition at line 49 of file RecAnalyzerMinbias.cc.

std::vector<TH1D *> RecAnalyzerMinbias::histo
private

Definition at line 54 of file RecAnalyzerMinbias.cc.

Referenced by analyzeHcal(), beginJob(), and endJob().

TFile* RecAnalyzerMinbias::hOutputFile
private

Definition at line 52 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

int RecAnalyzerMinbias::ieta
private

Definition at line 59 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), endJob(), and RecAnalyzerMinbias().

bool RecAnalyzerMinbias::ignoreL1
private

Definition at line 51 of file RecAnalyzerMinbias.cc.

Referenced by analyze(), and RecAnalyzerMinbias().

int RecAnalyzerMinbias::iphi
private

Definition at line 59 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), endJob(), and RecAnalyzerMinbias().

float RecAnalyzerMinbias::mom0_MB
private

Definition at line 60 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

float RecAnalyzerMinbias::mom1_MB
private

Definition at line 60 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

float RecAnalyzerMinbias::mom2_MB
private

Definition at line 60 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

float RecAnalyzerMinbias::mom3_MB
private

Definition at line 60 of file RecAnalyzerMinbias.cc.

Referenced by endJob().

float RecAnalyzerMinbias::mom4_MB
private

Definition at line 60 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

std::map<std::pair<int,HcalDetId>,myInfo> RecAnalyzerMinbias::myMap
private

Definition at line 67 of file RecAnalyzerMinbias.cc.

Referenced by analyzeHcal(), beginJob(), and endJob().

int RecAnalyzerMinbias::mysubd
private

Definition at line 59 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

TTree* RecAnalyzerMinbias::myTree
private

Definition at line 53 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

char RecAnalyzerMinbias::name[700]
private

Definition at line 49 of file RecAnalyzerMinbias.cc.

Referenced by ElectronMVAID.ElectronMVAID::__call__(), dirstructure.Directory::__create_pie_image(), dqm_interfaces.DirID::__eq__(), BeautifulSoup.Tag::__eq__(), dirstructure.Directory::__get_full_path(), dirstructure.Comparison::__get_img_name(), dataset.Dataset::__getDataType(), dataset.Dataset::__getFileInfoList(), cuy.divideElement::__init__(), cuy.plotElement::__init__(), cuy.additionElement::__init__(), cuy.superimposeElement::__init__(), cuy.graphElement::__init__(), dirstructure.Comparison::__make_image(), core.autovars.NTupleVariable::__repr__(), core.autovars.NTupleObjectType::__repr__(), core.autovars.NTupleObject::__repr__(), core.autovars.NTupleCollection::__repr__(), dirstructure.Directory::__repr__(), dqm_interfaces.DirID::__repr__(), dirstructure.Comparison::__repr__(), config.CFG::__str__(), counter.Counter::__str__(), average.Average::__str__(), BeautifulSoup.Tag::__str__(), BeautifulSoup.SoupStrainer::__str__(), core.autovars.NTupleObjectType::allVars(), beginJob(), dirstructure.Directory::calcStats(), python.rootplot.utilities.Hist::divide(), python.rootplot.utilities.Hist::divide_wilson(), TreeCrawler.Package::dump(), core.autovars.NTupleVariable::fillBranch(), core.autovars.NTupleObject::fillBranches(), core.autovars.NTupleCollection::fillBranchesScalar(), core.autovars.NTupleCollection::fillBranchesVector(), core.autovars.NTupleCollection::get_cpp_declaration(), core.autovars.NTupleCollection::get_cpp_wrapper_class(), core.autovars.NTupleCollection::get_py_wrapper_class(), utils.StatisticalTest::get_status(), core.autovars.NTupleVariable::makeBranch(), core.autovars.NTupleObject::makeBranches(), core.autovars.NTupleCollection::makeBranchesScalar(), core.autovars.NTupleCollection::makeBranchesVector(), dirstructure.Directory::print_report(), BeautifulSoup.SoupStrainer::searchTag(), python.rootplot.utilities.Hist::TGraph(), python.rootplot.utilities.Hist::TH1F(), Vispa.Views.PropertyView.Property::valueChanged(), counter.Counter::write(), and average.Average::write().

double RecAnalyzerMinbias::rnnum
private

Definition at line 58 of file RecAnalyzerMinbias.cc.

Referenced by analyze(), and analyzeHcal().

double RecAnalyzerMinbias::rnnumber
private

Definition at line 58 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().

bool RecAnalyzerMinbias::theRecalib
private

Definition at line 51 of file RecAnalyzerMinbias.cc.

Referenced by analyze(), analyzeHcal(), and RecAnalyzerMinbias().

char RecAnalyzerMinbias::title[700]
private
edm::EDGetTokenT<HBHERecHitCollection> RecAnalyzerMinbias::tok_hbherecoMB_
private

Definition at line 68 of file RecAnalyzerMinbias.cc.

Referenced by analyze(), and RecAnalyzerMinbias().

edm::EDGetTokenT<HFRecHitCollection> RecAnalyzerMinbias::tok_hfrecoMB_
private

Definition at line 69 of file RecAnalyzerMinbias.cc.

Referenced by analyze(), and RecAnalyzerMinbias().

edm::EDGetTokenT<L1GlobalTriggerObjectMapRecord> RecAnalyzerMinbias::tok_hltL1GtMap_
private

Definition at line 70 of file RecAnalyzerMinbias.cc.

Referenced by analyze(), and RecAnalyzerMinbias().

int RecAnalyzerMinbias::trigbit
private

Definition at line 59 of file RecAnalyzerMinbias.cc.

Referenced by beginJob(), and endJob().