CMS 3D CMS Logo

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

#include <TrackingPFG/PileUp/src/MCVerticesAnalyzer.cc>

Inheritance diagram for MCVerticesAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 MCVerticesAnalyzer (const edm::ParameterSet &)
 
 ~MCVerticesAnalyzer ()
 
- 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
 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
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
virtual void beginJob ()
 
virtual void beginRun (const edm::Run &, const edm::EventSetup &)
 
virtual void endJob ()
 
virtual void endRun (const edm::Run &, const edm::EventSetup &)
 

Private Attributes

edm::EDGetTokenT< double > m_doubleToken
 
edm::EDGetTokenT
< edm::HepMCProduct
m_hepMCProductToken
 
TH1F * m_hlumi
 
TH1F * m_hmainvtxx
 
TH1F * m_hmainvtxy
 
TH1F * m_hmainvtxz
 
TH1F * m_hnvtx
 
TH2F * m_hnvtxvslumi
 
TH1F * m_hnvtxweight
 
TProfile * m_hnvtxweightprof
 
TH1F * m_hpileupvtxz
 
const bool m_useweight
 
edm::EDGetTokenT< std::vector
< PileupSummaryInfo > > 
m_vecPileupSummaryInfoToken
 

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

Description: <one line="" class="" summary>="">

Implementation: <Notes on="" implementation>="">

Definition at line 57 of file MCVerticesAnalyzer.cc.

Constructor & Destructor Documentation

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

Definition at line 102 of file MCVerticesAnalyzer.cc.

References m_hlumi, m_hmainvtxx, m_hmainvtxy, m_hmainvtxz, m_hnvtx, m_hnvtxvslumi, m_hnvtxweight, m_hnvtxweightprof, m_hpileupvtxz, m_useweight, and TFileService::make().

103  : m_useweight( iConfig.getParameter< bool >( "useWeight" ) )
104  , m_doubleToken( consumes< double >( iConfig.getParameter< edm::InputTag >( "weightProduct" ) ) )
105  , m_vecPileupSummaryInfoToken( consumes< std::vector<PileupSummaryInfo> >( iConfig.getParameter< edm::InputTag >( "pileupSummaryCollection" ) ) )
106  , m_hepMCProductToken( consumes< edm::HepMCProduct >( iConfig.getParameter< edm::InputTag >( "mcTruthCollection" ) ) )
107 {
108  //now do what ever initialization is needed
109 
110 
111 
113 
114  m_hnvtx = tfserv->make<TH1F>("nvtx","Number of pileup vertices",60,-0.5,59.5);
115  m_hnvtx->GetXaxis()->SetTitle("Number of Interactions");
116 
117  m_hlumi = tfserv->make<TH1F>("lumi","BX luminosity*xsect",200,0.,50.);
118  m_hlumi->GetXaxis()->SetTitle("Average Number of Interactions");
119 
120  m_hnvtxvslumi = tfserv->make<TH2F>("nvtxvslumi","Npileup vs BX luminosity*xsect",200,0.,50.,60,-0.5,59.5);
121  m_hnvtxvslumi->GetXaxis()->SetTitle("Average Number of Interactions"); m_hnvtxvslumi->GetYaxis()->SetTitle("Number of Interactions");
122 
123  if(m_useweight) {
124  m_hnvtxweight = tfserv->make<TH1F>("nvtxweight","Number of pileup vertices (1-w)",60,-0.5,59.5);
125  m_hnvtxweight->GetXaxis()->SetTitle("Number of Interactions");
126  m_hnvtxweightprof = tfserv->make<TProfile>("nvtxweightprof","Mean (1-w) vs Number of pileup interactions",60,-0.5,59.5);
127  m_hnvtxweightprof->GetXaxis()->SetTitle("Number of Interactions");
128  }
129 
130  m_hmainvtxx = tfserv->make<TH1F>("mainvtxx","Main vertex x position",200,-.5,.5);
131  m_hmainvtxx->GetXaxis()->SetTitle("X (cm)");
132  m_hmainvtxy = tfserv->make<TH1F>("mainvtxy","Main vertex y position",200,-.5,.5);
133  m_hmainvtxy->GetXaxis()->SetTitle("Y (cm)");
134  m_hmainvtxz = tfserv->make<TH1F>("mainvtxz","Main vertex z position",600,-30.,30.);
135  m_hmainvtxz->GetXaxis()->SetTitle("Z (cm)");
136  m_hpileupvtxz = tfserv->make<TH1F>("pileupvtxz","PileUp vertices z position",600,-30.,30.);
137  m_hpileupvtxz->GetXaxis()->SetTitle("Z (cm)");
138 
139 }
T getParameter(std::string const &) const
edm::EDGetTokenT< double > m_doubleToken
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< std::vector< PileupSummaryInfo > > m_vecPileupSummaryInfoToken
edm::EDGetTokenT< edm::HepMCProduct > m_hepMCProductToken
MCVerticesAnalyzer::~MCVerticesAnalyzer ( )

Definition at line 142 of file MCVerticesAnalyzer.cc.

143 {
144 
145  // do anything here that needs to be done at desctruction time
146  // (e.g. close files, deallocate resources etc.)
147 
148 }

Member Function Documentation

void MCVerticesAnalyzer::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
privatevirtual

Implements edm::EDAnalyzer.

Definition at line 157 of file MCVerticesAnalyzer.cc.

References edm::Event::getByToken(), edm::HandleBase::isValid(), m_doubleToken, m_hepMCProductToken, m_hlumi, m_hmainvtxx, m_hmainvtxy, m_hmainvtxz, m_hnvtx, m_hnvtxvslumi, m_hnvtxweight, m_hnvtxweightprof, m_hpileupvtxz, m_useweight, m_vecPileupSummaryInfoToken, and histoStyle::weight.

158 {
159 
160  double weight = 1.;
161 
162  if(m_useweight) {
163  edm::Handle<double> weightprod;
164  iEvent.getByToken( m_doubleToken, weightprod );
165 
166  weight = *weightprod;
167 
168  }
169 
170 
172  iEvent.getByToken( m_vecPileupSummaryInfoToken, pileupinfos );
173 
174  //
175 
176  if(pileupinfos.isValid()) {
177 
178  // look for the intime PileupSummaryInfo
179 
180  std::vector<PileupSummaryInfo>::const_iterator pileupinfo;
181  for(pileupinfo = pileupinfos->begin(); pileupinfo != pileupinfos->end() ; ++pileupinfo) {
182  if(pileupinfo->getBunchCrossing()==0) break;
183  }
184 
185  //
186 
187  if(pileupinfo->getBunchCrossing()!=0) {
188  edm::LogError("NoInTimePileUpInfo") << "Cannot find the in-time pileup info " << pileupinfo->getBunchCrossing();
189  }
190  else {
191 
192  m_hlumi->Fill(pileupinfo->getTrueNumInteractions(),weight);
193  m_hnvtx->Fill(pileupinfo->getPU_NumInteractions(),weight);
194  m_hnvtxvslumi->Fill(pileupinfo->getTrueNumInteractions(),pileupinfo->getPU_NumInteractions(),weight);
195 
196  if(m_useweight) {
197  m_hnvtxweight->Fill(pileupinfo->getPU_NumInteractions(),1.-weight);
198  m_hnvtxweightprof->Fill(pileupinfo->getPU_NumInteractions(),1.-weight);
199  }
200 
201  const std::vector<float>& zpositions = pileupinfo->getPU_zpositions();
202 
203  for(std::vector<float>::const_iterator zpos = zpositions.begin() ; zpos != zpositions.end() ; ++zpos) {
204 
205  m_hpileupvtxz->Fill(*zpos,weight);
206 
207  }
208  }
209  }
210  // main interaction part
211 
213  iEvent.getByToken( m_hepMCProductToken, EvtHandle );
214 
215  if(EvtHandle.isValid()) {
216 
217  const HepMC::GenEvent* Evt = EvtHandle->GetEvent();
218 
219  // get the first vertex
220 
221  if(Evt->vertices_begin() != Evt->vertices_end()) {
222 
223  m_hmainvtxx->Fill((*Evt->vertices_begin())->point3d().x()/10.,weight);
224  m_hmainvtxy->Fill((*Evt->vertices_begin())->point3d().y()/10.,weight);
225  m_hmainvtxz->Fill((*Evt->vertices_begin())->point3d().z()/10.,weight);
226 
227  }
228  }
229 }
edm::EDGetTokenT< double > m_doubleToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
edm::EDGetTokenT< std::vector< PileupSummaryInfo > > m_vecPileupSummaryInfoToken
bool isValid() const
Definition: HandleBase.h:76
int weight
Definition: histoStyle.py:50
edm::EDGetTokenT< edm::HepMCProduct > m_hepMCProductToken
void MCVerticesAnalyzer::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 245 of file MCVerticesAnalyzer.cc.

246 {
247 }
void MCVerticesAnalyzer::beginRun ( const edm::Run iRun,
const edm::EventSetup  
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 232 of file MCVerticesAnalyzer.cc.

233 {
234 }
void MCVerticesAnalyzer::endJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 251 of file MCVerticesAnalyzer.cc.

252 {
253 }
void MCVerticesAnalyzer::endRun ( const edm::Run iRun,
const edm::EventSetup  
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 237 of file MCVerticesAnalyzer.cc.

238 {
239 }

Member Data Documentation

edm::EDGetTokenT< double > MCVerticesAnalyzer::m_doubleToken
private

Definition at line 75 of file MCVerticesAnalyzer.cc.

Referenced by analyze().

edm::EDGetTokenT< edm::HepMCProduct > MCVerticesAnalyzer::m_hepMCProductToken
private

Definition at line 77 of file MCVerticesAnalyzer.cc.

Referenced by analyze().

TH1F* MCVerticesAnalyzer::m_hlumi
private

Definition at line 80 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

TH1F* MCVerticesAnalyzer::m_hmainvtxx
private

Definition at line 84 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

TH1F* MCVerticesAnalyzer::m_hmainvtxy
private

Definition at line 85 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

TH1F* MCVerticesAnalyzer::m_hmainvtxz
private

Definition at line 86 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

TH1F* MCVerticesAnalyzer::m_hnvtx
private

Definition at line 79 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

TH2F* MCVerticesAnalyzer::m_hnvtxvslumi
private

Definition at line 81 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

TH1F* MCVerticesAnalyzer::m_hnvtxweight
private

Definition at line 82 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

TProfile* MCVerticesAnalyzer::m_hnvtxweightprof
private

Definition at line 83 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

TH1F* MCVerticesAnalyzer::m_hpileupvtxz
private

Definition at line 87 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

const bool MCVerticesAnalyzer::m_useweight
private

Definition at line 73 of file MCVerticesAnalyzer.cc.

Referenced by analyze(), and MCVerticesAnalyzer().

edm::EDGetTokenT< std::vector<PileupSummaryInfo> > MCVerticesAnalyzer::m_vecPileupSummaryInfoToken
private

Definition at line 76 of file MCVerticesAnalyzer.cc.

Referenced by analyze().