CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1AnalysisEvent.cc
Go to the documentation of this file.
2 
5 
6 #include <string>
7 #include <iostream>
8 #include <sys/stat.h>
9 
11  std::string puMCHist,
12  std::string puDataFile,
13  std::string puDataHist,
14  bool useAvgVtx,
15  double maxWeight,
16  edm::ConsumesCollector && iConsumes) :
17  fillHLT_(true),
18  doPUWeights_(false),
19  useAvgVtx_(useAvgVtx),
20  maxAllowedWeight_(maxWeight),
21  lumiWeights_()
22 {
23 
24  pileupSummaryInfoToken_ = iConsumes.consumes<std::vector<PileupSummaryInfo>>(edm::InputTag("addPileupInfo"));
25  // check PU files exists, and reweight if they do
26  struct stat buf;
27  if ((stat(puMCFile.c_str(), &buf) != -1) && (stat(puDataFile.c_str(), &buf) != -1)) {
29  puDataFile,
30  puMCHist,
31  puDataHist);
32  doPUWeights_ = true;
33  }
34  else {
35  edm::LogWarning("L1Prompt") << "No PU reweighting inputs - not going to calculate weights"<<std::endl;
36  }
37 
38 
39 }
40 
42 {
43 
44 }
45 
47 {
48 
49  event_.run = e.id().run();
50  event_.event = e.id().event();
51  event_.time = e.time().value();
52  event_.bx = e.bunchCrossing(); //overwritten by EVM info until fixed by fw
53  event_.lumi = e.luminosityBlock();
54  event_.orbit = e.orbitNumber(); //overwritten by EVM info until fixed by fw
55 
56 
57  if (!hlt_.isUninitialized()){
59  e.getByToken(hlt_,hltresults);
60  const edm::TriggerNames TrigNames_ = e.triggerNames(*hltresults);
61  const int ntrigs = hltresults->size();
62 
63  for (int itr=0; itr<ntrigs; itr++){
64  TString trigName=TrigNames_.triggerName(itr);
65  if (!hltresults->accept(itr)) continue;
66  event_.hlt.push_back(trigName);
67  }
68  }
69 
70  // do PU re-weighting for MC only
71  double weight = 1.;
72 
73  if (doPUWeights_ && (! e.eventAuxiliary().isRealData())) {
74 
76  e.getByLabel(edm::InputTag("addPileupInfo"), puInfo);
77 
78  if (puInfo.isValid()) {
79  std::vector<PileupSummaryInfo>::const_iterator pvi;
80 
81  float npv = -1;
82  for(pvi = puInfo->begin(); pvi != puInfo->end(); ++pvi) {
83 
84  int bx = pvi->getBunchCrossing();
85 
86  if(bx == 0) {
87  npv = useAvgVtx_ ? pvi->getTrueNumInteractions() :
88  pvi->getPU_NumInteractions();
89  continue;
90  }
91 
92  }
93 
94  weight = lumiWeights_.weight( npv );
95  if (maxAllowedWeight_ > 0. && weight > maxAllowedWeight_)
96  weight = maxAllowedWeight_;
97  }
98  }
99 
100  if (! e.eventAuxiliary().isRealData()){
101 
103  e.getByToken(pileupSummaryInfoToken_, puInfo);
104  if (puInfo.isValid()) {
105  for(std::vector<PileupSummaryInfo>::const_iterator pvi=puInfo->begin();pvi!=puInfo->end();pvi++){
106  int bx = pvi->getBunchCrossing();
107  if (bx==0) {
108  event_.nPV = pvi->getPU_NumInteractions();
109  event_.nPV_True = pvi->getTrueNumInteractions();
110  }
111  }
112  }
113  }
114 
115  event_.puWeight = weight;
116 
117 }
118 
119 
120 
121 
RunNumber_t run() const
Definition: EventID.h:39
edm::EDGetTokenT< std::vector< PileupSummaryInfo > > pileupSummaryInfoToken_
EventNumber_t event() const
Definition: EventID.h:41
bool isRealData() const
virtual edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const
Definition: Event.cc:215
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
L1AnalysisEvent(std::string puMCFile, std::string puMCHist, std::string puDataFile, std::string puDataHist, bool useAvgVtx, double maxWeight, edm::ConsumesCollector &&)
int bunchCrossing() const
Definition: EventBase.h:65
edm::LuminosityBlockNumber_t luminosityBlock() const
Definition: EventBase.h:62
int orbitNumber() const
Definition: EventBase.h:66
bool isValid() const
Definition: HandleBase.h:75
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:418
void Set(const edm::Event &e, const edm::EDGetTokenT< edm::TriggerResults > &hlt_)
EventAuxiliary const & eventAuxiliary() const
Definition: Event.h:77
std::string const & triggerName(unsigned int index) const
Definition: TriggerNames.cc:27
edm::EventID id() const
Definition: EventBase.h:59
void event_()
edm::LumiReWeighting lumiWeights_
bool isUninitialized() const
Definition: EDGetToken.h:73
volatile std::atomic< bool > shutdown_flag false
int weight
Definition: histoStyle.py:50
TimeValue_t value() const
Definition: Timestamp.h:56
edm::Timestamp time() const
Definition: EventBase.h:60