CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
DuplicationChecker Class Reference

#include <DuplicationChecker.h>

Inheritance diagram for DuplicationChecker:
one::DQMEDAnalyzer< T > one::dqmimplementation::DQMBaseClass< T... >

Public Types

typedef std::multimap< double, edm::EventIDassociationMap
 
typedef std::vector< associationMap::iterator > itemList
 

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void bookHistograms (DQMStore::IBooker &i, edm::Run const &, edm::EventSetup const &) override
 
 DuplicationChecker (const edm::ParameterSet &)
 
void findValuesAssociatedWithKey (associationMap &mMap, double &key, itemList &theObjects)
 
 ~DuplicationChecker () override
 
- Public Member Functions inherited from one::DQMEDAnalyzer< T >
 DQMEDAnalyzer ()=default
 
 DQMEDAnalyzer (DQMEDAnalyzer< T... > const &)=delete
 
 DQMEDAnalyzer (DQMEDAnalyzer< T... > &&)=delete
 
 ~DQMEDAnalyzer () override=default
 

Private Attributes

edm::InputTag generatedCollection_
 
edm::EDGetTokenT< edm::HepMCProductgeneratedCollectionToken_
 
edm::InputTag lheEventProduct_
 
edm::EDGetTokenT< LHEEventProductlheEventProductToken_
 
bool searchForLHE_
 
WeightManager wmanager_
 
associationMap xBjorkenHistory
 
MonitorElementxBjorkenME
 

Detailed Description

Definition at line 39 of file DuplicationChecker.h.

Member Typedef Documentation

typedef std::multimap<double,edm::EventID> DuplicationChecker::associationMap

Definition at line 43 of file DuplicationChecker.h.

typedef std::vector<associationMap::iterator> DuplicationChecker::itemList

Definition at line 44 of file DuplicationChecker.h.

Constructor & Destructor Documentation

DuplicationChecker::DuplicationChecker ( const edm::ParameterSet iPSet)
explicit

Definition at line 12 of file DuplicationChecker.cc.

References generatedCollection_, generatedCollectionToken_, edm::ParameterSet::getParameter(), lheEventProduct_, lheEventProductToken_, searchForLHE_, and xBjorkenHistory.

12  :
13  wmanager_(iPSet,consumesCollector()),
14  generatedCollection_(iPSet.getParameter<edm::InputTag>("hepmcCollection")),
15  searchForLHE_(iPSet.getParameter<bool>("searchForLHE"))
16 {
17  if (searchForLHE_) {
18  lheEventProduct_ = iPSet.getParameter<edm::InputTag>("lheEventProduct");
19  }
20  xBjorkenHistory.clear();
21 
22  if (searchForLHE_) lheEventProductToken_=consumes<LHEEventProduct>(lheEventProduct_);
23  else generatedCollectionToken_=consumes<HepMCProduct>(generatedCollection_);
24 
25 }
T getParameter(std::string const &) const
edm::EDGetTokenT< LHEEventProduct > lheEventProductToken_
edm::InputTag generatedCollection_
edm::EDGetTokenT< edm::HepMCProduct > generatedCollectionToken_
associationMap xBjorkenHistory
WeightManager wmanager_
edm::InputTag lheEventProduct_
DuplicationChecker::~DuplicationChecker ( )
override

Definition at line 27 of file DuplicationChecker.cc.

References xBjorkenHistory.

28 {
29  xBjorkenHistory.clear();
30 }
associationMap xBjorkenHistory

Member Function Documentation

void DuplicationChecker::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 40 of file DuplicationChecker.cc.

References MonitorElement::Fill(), generatedCollectionToken_, edm::Event::getByToken(), edm::HepMCProduct::GetEvent(), LHEEventProduct::hepeup(), hepeup_, edm::EventBase::id(), lheEventProductToken_, lhef::HEPEUP::PUP, searchForLHE_, WeightManager::weight(), wmanager_, xBjorkenHistory, and xBjorkenME.

41 {
42 
43  double bjorken = 0;
44 
45  double weight = 1.;
46 
47  if (searchForLHE_) {
48 
50  iEvent.getByToken(lheEventProductToken_, evt);
51 
52  const lhef::HEPEUP hepeup_ = evt->hepeup();
53 
54  const std::vector<lhef::HEPEUP::FiveVector> pup_ = hepeup_.PUP;
55 
56  double pz1=(pup_[0])[3];
57  double pz2=(pup_[1])[3];
58  bjorken+=(pz1/(pz1+pz2));
59  }
60  else {
61  //change teh weight in this case
62  weight = wmanager_.weight(iEvent);
63 
66 
67  const HepMC::PdfInfo *pdf = evt->GetEvent()->pdf_info();
68  if(pdf){
69  bjorken = ((pdf->x1())/((pdf->x1())+(pdf->x2())));
70  }
71 
72  }
73 
74  xBjorkenHistory.insert(std::pair<double,edm::EventID>(bjorken,iEvent.id()));
75 
76  xBjorkenME->Fill(bjorken,weight);
77 
78 }//analyze
const lhef::HEPEUP & hepeup() const
edm::EDGetTokenT< LHEEventProduct > lheEventProductToken_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
struct HEPEUP_ hepeup_
edm::EDGetTokenT< edm::HepMCProduct > generatedCollectionToken_
Definition: weight.py:1
associationMap xBjorkenHistory
void Fill(long long x)
std::vector< FiveVector > PUP
Definition: LesHouches.h:261
WeightManager wmanager_
MonitorElement * xBjorkenME
const HepMC::GenEvent * GetEvent() const
Definition: HepMCProduct.h:38
edm::EventID id() const
Definition: EventBase.h:59
double weight(const edm::Event &)
void DuplicationChecker::bookHistograms ( DQMStore::IBooker i,
edm::Run const &  ,
edm::EventSetup const &   
)
override

Setting the DQM top directories

Booking the ME's

Definition at line 32 of file DuplicationChecker.cc.

References DQMHelper::book1dHisto(), DQMStore::IBooker::setCurrentFolder(), and xBjorkenME.

32  {
34  DQMHelper dqm(&i); i.setCurrentFolder("Generator/DuplicationCheck");
35 
37  xBjorkenME = dqm.book1dHisto("xBjorkenME", "x Bjorken ratio", 1000000, 0., 1.);
38 }
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
MonitorElement * xBjorkenME
void DuplicationChecker::findValuesAssociatedWithKey ( associationMap mMap,
double &  key,
itemList theObjects 
)

Definition at line 80 of file DuplicationChecker.cc.

81 {
82  associationMap::iterator itr;
83  associationMap::iterator lastElement;
84 
85  theObjects.clear();
86 
87  // locate an iterator to the first pair object associated with key
88  itr = mMap.find(key);
89  if (itr == mMap.end())
90  return; // no elements associated with key, so return immediately
91 
92  // get an iterator to the element that is one past the last element associated with key
93  lastElement = mMap.upper_bound(key);
94 
95  // for each element in the sequence [itr, lastElement)
96  for ( ; itr != lastElement; ++itr)
97  theObjects.push_back(itr);
98 }

Member Data Documentation

edm::InputTag DuplicationChecker::generatedCollection_
private

Definition at line 57 of file DuplicationChecker.h.

Referenced by DuplicationChecker().

edm::EDGetTokenT<edm::HepMCProduct> DuplicationChecker::generatedCollectionToken_
private

Definition at line 67 of file DuplicationChecker.h.

Referenced by analyze(), and DuplicationChecker().

edm::InputTag DuplicationChecker::lheEventProduct_
private

Definition at line 58 of file DuplicationChecker.h.

Referenced by DuplicationChecker().

edm::EDGetTokenT<LHEEventProduct> DuplicationChecker::lheEventProductToken_
private

Definition at line 66 of file DuplicationChecker.h.

Referenced by analyze(), and DuplicationChecker().

bool DuplicationChecker::searchForLHE_
private

Definition at line 60 of file DuplicationChecker.h.

Referenced by analyze(), and DuplicationChecker().

WeightManager DuplicationChecker::wmanager_
private

Definition at line 55 of file DuplicationChecker.h.

Referenced by analyze().

associationMap DuplicationChecker::xBjorkenHistory
private

Definition at line 62 of file DuplicationChecker.h.

Referenced by analyze(), DuplicationChecker(), and ~DuplicationChecker().

MonitorElement* DuplicationChecker::xBjorkenME
private

Definition at line 64 of file DuplicationChecker.h.

Referenced by analyze(), and bookHistograms().