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
MCVerticesWeight Class Reference

#include <Validation/RecoVertex/MCVerticesWeight.cc>

Inheritance diagram for MCVerticesWeight:
edm::global::EDFilter<> edm::global::EDFilterBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 MCVerticesWeight (const edm::ParameterSet &)
 
 ~MCVerticesWeight ()
 
- Public Member Functions inherited from edm::global::EDFilter<>
 EDFilter ()=default
 
- Public Member Functions inherited from edm::global::EDFilterBase
 EDFilterBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDFilterBase ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- 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 (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &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

virtual bool filter (edm::StreamID, edm::Event &, const edm::EventSetup &) const override
 

Private Attributes

edm::EDGetTokenT
< edm::HepMCProduct
m_hepMCProductToken
 
edm::EDGetTokenT< std::vector
< PileupSummaryInfo > > 
m_vecPileupSummaryInfoToken
 
const VertexWeighter m_weighter
 

Additional Inherited Members

- Public Types inherited from edm::global::EDFilterBase
typedef EDFilterBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::global::EDFilterBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- 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:

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

Definition at line 49 of file MCVerticesWeight.cc.

Constructor & Destructor Documentation

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

Definition at line 68 of file MCVerticesWeight.cc.

69  : m_vecPileupSummaryInfoToken( consumes< std::vector<PileupSummaryInfo> >( iConfig.getParameter< edm::InputTag >( "pileupSummaryCollection" ) ) )
70  , m_hepMCProductToken( consumes< edm::HepMCProduct >( iConfig.getParameter< edm::InputTag >( "mcTruthCollection" ) ) )
71  , m_weighter( iConfig.getParameter<edm::ParameterSet>( "weighterConfig" ) )
72 {
73 
74  produces<double>();
75 
76 }
T getParameter(std::string const &) const
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
const VertexWeighter m_weighter
edm::EDGetTokenT< edm::HepMCProduct > m_hepMCProductToken
edm::EDGetTokenT< std::vector< PileupSummaryInfo > > m_vecPileupSummaryInfoToken
MCVerticesWeight::~MCVerticesWeight ( )

Definition at line 78 of file MCVerticesWeight.cc.

79 {
80 }

Member Function Documentation

bool MCVerticesWeight::filter ( edm::StreamID  ,
edm::Event iEvent,
const edm::EventSetup iSetup 
) const
overrideprivatevirtual

Implements edm::global::EDFilterBase.

Definition at line 89 of file MCVerticesWeight.cc.

References edm::Event::getByToken(), m_hepMCProductToken, m_vecPileupSummaryInfoToken, m_weighter, edm::Event::put(), VertexWeighter::weight(), and histoStyle::weight.

90 {
91 
92  bool selected = true;
93 
94  double computed_weight(1);
95 
97  iEvent.getByToken( m_vecPileupSummaryInfoToken, pileupinfos );
98 
99 
100  // look for the intime PileupSummaryInfo
101 
102  std::vector<PileupSummaryInfo>::const_iterator pileupinfo;
103  for(pileupinfo = pileupinfos->begin(); pileupinfo != pileupinfos->end() ; ++pileupinfo) {
104  if(pileupinfo->getBunchCrossing()==0) break;
105  }
106 
107  //
108  if(pileupinfo->getBunchCrossing()!=0) {
109  edm::LogError("NoInTimePileUpInfo") << "Cannot find the in-time pileup info " << pileupinfo->getBunchCrossing();
110  }
111  else {
112 
113  // pileupinfo->getPU_NumInteractions();
114 
115  const std::vector<float>& zpositions = pileupinfo->getPU_zpositions();
116 
117  // for(std::vector<float>::const_iterator zpos = zpositions.begin() ; zpos != zpositions.end() ; ++zpos) {
118 
119  // }
120 
121  // main interaction part
122 
124  iEvent.getByToken( m_hepMCProductToken, EvtHandle );
125 
126  const HepMC::GenEvent* Evt = EvtHandle->GetEvent();
127 
128  // get the first vertex
129 
130  double zmain = 0.0;
131  if(Evt->vertices_begin() != Evt->vertices_end()) {
132  zmain = (*Evt->vertices_begin())->point3d().z()/10.;
133  }
134 
135  //
136 
137 
138  computed_weight = m_weighter.weight(zpositions,zmain);
139 
140  }
141 
142  std::auto_ptr<double> weight(new double(computed_weight));
143 
144  iEvent.put(weight);
145 
146  //
147 
148  return selected;
149 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
const VertexWeighter m_weighter
edm::EDGetTokenT< edm::HepMCProduct > m_hepMCProductToken
int weight
Definition: histoStyle.py:50
const double weight(const std::vector< float > &zpositions, const float &zmain) const
edm::EDGetTokenT< std::vector< PileupSummaryInfo > > m_vecPileupSummaryInfoToken

Member Data Documentation

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

Definition at line 60 of file MCVerticesWeight.cc.

Referenced by filter().

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

Definition at line 59 of file MCVerticesWeight.cc.

Referenced by filter().

const VertexWeighter MCVerticesWeight::m_weighter
private

Definition at line 61 of file MCVerticesWeight.cc.

Referenced by filter().