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::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 MCVerticesWeight (const edm::ParameterSet &)
 
 ~MCVerticesWeight ()
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
virtual ~EDFilter ()
 
- Public Member Functions inherited from edm::ProducerBase
 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
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void beginJob ()
 
virtual void endJob ()
 
virtual bool filter (edm::Event &, const edm::EventSetup &)
 

Private Attributes

edm::InputTag m_mctruthcollection
 
edm::InputTag m_pileupcollection
 
const VertexWeighter m_weighter
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
typedef WorkerT< EDFilterWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDFilter
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDFilter
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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 78 of file MCVerticesWeight.cc.

78  :
79  m_pileupcollection(iConfig.getParameter<edm::InputTag>("pileupSummaryCollection")),
80  m_mctruthcollection(iConfig.getParameter<edm::InputTag>("mcTruthCollection")),
81  m_weighter(iConfig.getParameter<edm::ParameterSet>("weighterConfig"))
82 {
83 
84  produces<double>();
85 
86 }
T getParameter(std::string const &) const
edm::InputTag m_mctruthcollection
edm::InputTag m_pileupcollection
const VertexWeighter m_weighter
MCVerticesWeight::~MCVerticesWeight ( )

Definition at line 88 of file MCVerticesWeight.cc.

89 {
90 
91  // do anything here that needs to be done at desctruction time
92  // (e.g. close files, deallocate resources etc.)
93 
94 }

Member Function Documentation

void MCVerticesWeight::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDFilter.

Definition at line 168 of file MCVerticesWeight.cc.

169 {
170 }
void MCVerticesWeight::endJob ( void  )
privatevirtual

Reimplemented from edm::EDFilter.

Definition at line 174 of file MCVerticesWeight.cc.

174  {
175 }
bool MCVerticesWeight::filter ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
privatevirtual

Implements edm::EDFilter.

Definition at line 103 of file MCVerticesWeight.cc.

References edm::Event::getByLabel(), m_mctruthcollection, m_pileupcollection, m_weighter, edm::Event::put(), VertexWeighter::weight(), and histoStyle::weight.

104 {
105  using namespace edm;
106 
107  bool selected = true;
108 
109  double computed_weight(1);
110 
112  iEvent.getByLabel(m_pileupcollection,pileupinfos);
113 
114 
115  // look for the intime PileupSummaryInfo
116 
117  std::vector<PileupSummaryInfo>::const_iterator pileupinfo;
118  for(pileupinfo = pileupinfos->begin(); pileupinfo != pileupinfos->end() ; ++pileupinfo) {
119  if(pileupinfo->getBunchCrossing()==0) break;
120  }
121 
122  //
123  if(pileupinfo->getBunchCrossing()!=0) {
124  edm::LogError("NoInTimePileUpInfo") << "Cannot find the in-time pileup info " << pileupinfo->getBunchCrossing();
125  }
126  else {
127 
128  // pileupinfo->getPU_NumInteractions();
129 
130  const std::vector<float>& zpositions = pileupinfo->getPU_zpositions();
131 
132  // for(std::vector<float>::const_iterator zpos = zpositions.begin() ; zpos != zpositions.end() ; ++zpos) {
133 
134  // }
135 
136  // main interaction part
137 
138  Handle< HepMCProduct > EvtHandle ;
139  iEvent.getByLabel(m_mctruthcollection, EvtHandle ) ;
140 
141  const HepMC::GenEvent* Evt = EvtHandle->GetEvent();
142 
143  // get the first vertex
144 
145  double zmain = 0.0;
146  if(Evt->vertices_begin() != Evt->vertices_end()) {
147  zmain = (*Evt->vertices_begin())->point3d().z()/10.;
148  }
149 
150  //
151 
152 
153  computed_weight = m_weighter.weight(zpositions,zmain);
154 
155  }
156 
157  std::auto_ptr<double> weight(new double(computed_weight));
158 
159  iEvent.put(weight);
160 
161  //
162 
163  return selected;
164 }
edm::InputTag m_mctruthcollection
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
edm::InputTag m_pileupcollection
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
const VertexWeighter m_weighter
int weight
Definition: histoStyle.py:50
const double weight(const std::vector< float > &zpositions, const float &zmain) const

Member Data Documentation

edm::InputTag MCVerticesWeight::m_mctruthcollection
private

Definition at line 62 of file MCVerticesWeight.cc.

Referenced by filter().

edm::InputTag MCVerticesWeight::m_pileupcollection
private

Definition at line 61 of file MCVerticesWeight.cc.

Referenced by filter().

const VertexWeighter MCVerticesWeight::m_weighter
private

Definition at line 63 of file MCVerticesWeight.cc.

Referenced by filter().