CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
L1Analysis::L1AnalysisEvent Class Reference

#include <L1AnalysisEvent.h>

Public Member Functions

L1AnalysisEventDataFormatgetData ()
 
 L1AnalysisEvent (std::string puMCFile, std::string puMCHist, std::string puDataFile, std::string puDataHist, bool useAvgVtx, double maxWeight, edm::ConsumesCollector &&)
 
void Reset ()
 
void Set (const edm::Event &e, const edm::EDGetTokenT< edm::TriggerResults > &hlt_)
 
 ~L1AnalysisEvent ()
 

Private Attributes

bool doPUWeights_
 
L1Analysis::L1AnalysisEventDataFormat event_
 
bool fillHLT_
 
edm::LumiReWeighting lumiWeights_
 
double maxAllowedWeight_
 
edm::EDGetTokenT< std::vector
< PileupSummaryInfo > > 
pileupSummaryInfoToken_
 
bool useAvgVtx_
 

Detailed Description

Definition at line 27 of file L1AnalysisEvent.h.

Constructor & Destructor Documentation

L1Analysis::L1AnalysisEvent::L1AnalysisEvent ( std::string  puMCFile,
std::string  puMCHist,
std::string  puDataFile,
std::string  puDataHist,
bool  useAvgVtx,
double  maxWeight,
edm::ConsumesCollector &&  iConsumes 
)

Definition at line 10 of file L1AnalysisEvent.cc.

References visDQMUpload::buf, doPUWeights_, HLT_FULL_cff::InputTag, lumiWeights_, pileupSummaryInfoToken_, and edm_modernize_messagelogger::stat.

17  : fillHLT_(true), doPUWeights_(false), useAvgVtx_(useAvgVtx), maxAllowedWeight_(maxWeight), lumiWeights_() {
18  pileupSummaryInfoToken_ = iConsumes.consumes<std::vector<PileupSummaryInfo>>(edm::InputTag("addPileupInfo"));
19  // check PU files exists, and reweight if they do
20  struct stat buf;
21  if ((stat(puMCFile.c_str(), &buf) != -1) && (stat(puDataFile.c_str(), &buf) != -1)) {
22  lumiWeights_ = edm::LumiReWeighting(puMCFile, puDataFile, puMCHist, puDataHist);
23  doPUWeights_ = true;
24  } else {
25  edm::LogWarning("L1Prompt") << "No PU reweighting inputs - not going to calculate weights" << std::endl;
26  }
27 }
edm::EDGetTokenT< std::vector< PileupSummaryInfo > > pileupSummaryInfoToken_
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::LumiReWeighting lumiWeights_
Log< level::Warning, false > LogWarning
L1Analysis::L1AnalysisEvent::~L1AnalysisEvent ( )

Definition at line 29 of file L1AnalysisEvent.cc.

29 {}

Member Function Documentation

L1AnalysisEventDataFormat* L1Analysis::L1AnalysisEvent::getData ( void  )
inline

Definition at line 41 of file L1AnalysisEvent.h.

References event_.

41 { return &event_; }
L1Analysis::L1AnalysisEventDataFormat event_
void L1Analysis::L1AnalysisEvent::Reset ( )
inline

Definition at line 40 of file L1AnalysisEvent.h.

References event_, and L1Analysis::L1AnalysisEventDataFormat::Reset().

Referenced by L1EventTreeProducer::analyze().

40 { event_.Reset(); }
L1Analysis::L1AnalysisEventDataFormat event_
void L1Analysis::L1AnalysisEvent::Set ( const edm::Event e,
const edm::EDGetTokenT< edm::TriggerResults > &  hlt_ 
)

Definition at line 31 of file L1AnalysisEvent.cc.

References edm::EventBase::bunchCrossing(), makePileupJSON::bx, edm::EventID::event(), event_(), edm::Event::eventAuxiliary(), edm::Event::getByLabel(), edm::Event::getByToken(), edm::EventBase::id(), edm::EventAuxiliary::isRealData(), edm::EDGetTokenT< T >::isUninitialized(), edm::HandleBase::isValid(), edm::EventBase::luminosityBlock(), edm::EventBase::orbitNumber(), edm::EventID::run(), edm::EventBase::time(), edm::TriggerNames::triggerName(), edm::Event::triggerNames(), edm::Timestamp::value(), and histoStyle::weight.

Referenced by L1EventTreeProducer::analyze().

31  {
32  event_.run = e.id().run();
33  event_.event = e.id().event();
34  event_.time = e.time().value();
35  event_.bx = e.bunchCrossing(); //overwritten by EVM info until fixed by fw
37  event_.orbit = e.orbitNumber(); //overwritten by EVM info until fixed by fw
38 
39  if (!hlt_.isUninitialized()) {
41  e.getByToken(hlt_, hltresults);
42  const edm::TriggerNames& TrigNames_ = e.triggerNames(*hltresults);
43  const int ntrigs = hltresults->size();
44 
45  for (int itr = 0; itr < ntrigs; itr++) {
46  TString trigName = TrigNames_.triggerName(itr);
47  if (!hltresults->accept(itr))
48  continue;
49  event_.hlt.push_back(trigName);
50  }
51  }
52 
53  // do PU re-weighting for MC only
54  double weight = 1.;
55 
56  if (doPUWeights_ && (!e.eventAuxiliary().isRealData())) {
58  e.getByLabel(edm::InputTag("addPileupInfo"), puInfo);
59 
60  if (puInfo.isValid()) {
61  std::vector<PileupSummaryInfo>::const_iterator pvi;
62 
63  float npv = -1;
64  for (pvi = puInfo->begin(); pvi != puInfo->end(); ++pvi) {
65  int bx = pvi->getBunchCrossing();
66 
67  if (bx == 0) {
68  npv = useAvgVtx_ ? pvi->getTrueNumInteractions() : pvi->getPU_NumInteractions();
69  continue;
70  }
71  }
72 
73  weight = lumiWeights_.weight(npv);
74  if (maxAllowedWeight_ > 0. && weight > maxAllowedWeight_)
75  weight = maxAllowedWeight_;
76  }
77  }
78 
79  if (!e.eventAuxiliary().isRealData()) {
82  if (puInfo.isValid()) {
83  for (std::vector<PileupSummaryInfo>::const_iterator pvi = puInfo->begin(); pvi != puInfo->end(); pvi++) {
84  int bx = pvi->getBunchCrossing();
85  if (bx == 0) {
86  event_.nPV = pvi->getPU_NumInteractions();
87  event_.nPV_True = pvi->getTrueNumInteractions();
88  }
89  }
90  }
91  }
92 
94 }
RunNumber_t run() const
Definition: EventID.h:38
edm::EDGetTokenT< std::vector< PileupSummaryInfo > > pileupSummaryInfoToken_
EventNumber_t event() const
Definition: EventID.h:40
bool isRealData() const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
constexpr bool isUninitialized() const noexcept
Definition: EDGetToken.h:99
int bunchCrossing() const
Definition: EventBase.h:64
edm::LuminosityBlockNumber_t luminosityBlock() const
Definition: EventBase.h:61
EventAuxiliary const & eventAuxiliary() const override
Definition: Event.h:95
edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const override
Definition: Event.cc:275
double weight(int npv)
int orbitNumber() const
Definition: EventBase.h:65
bool isValid() const
Definition: HandleBase.h:70
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:500
std::string const & triggerName(unsigned int index) const
Definition: TriggerNames.cc:50
edm::EventID id() const
Definition: EventBase.h:59
edm::LumiReWeighting lumiWeights_
L1Analysis::L1AnalysisEventDataFormat event_
int weight
Definition: histoStyle.py:51
TimeValue_t value() const
Definition: Timestamp.h:45
edm::Timestamp time() const
Definition: EventBase.h:60

Member Data Documentation

bool L1Analysis::L1AnalysisEvent::doPUWeights_
private

Definition at line 47 of file L1AnalysisEvent.h.

Referenced by L1AnalysisEvent().

L1Analysis::L1AnalysisEventDataFormat L1Analysis::L1AnalysisEvent::event_
private

Definition at line 55 of file L1AnalysisEvent.h.

Referenced by getData(), and Reset().

bool L1Analysis::L1AnalysisEvent::fillHLT_
private

Definition at line 46 of file L1AnalysisEvent.h.

edm::LumiReWeighting L1Analysis::L1AnalysisEvent::lumiWeights_
private

Definition at line 52 of file L1AnalysisEvent.h.

Referenced by L1AnalysisEvent().

double L1Analysis::L1AnalysisEvent::maxAllowedWeight_
private

Definition at line 50 of file L1AnalysisEvent.h.

edm::EDGetTokenT<std::vector<PileupSummaryInfo> > L1Analysis::L1AnalysisEvent::pileupSummaryInfoToken_
private

Definition at line 54 of file L1AnalysisEvent.h.

Referenced by L1AnalysisEvent().

bool L1Analysis::L1AnalysisEvent::useAvgVtx_
private

Definition at line 49 of file L1AnalysisEvent.h.