CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
EventVtxInfoNtupleDumper Class Reference
Inheritance diagram for EventVtxInfoNtupleDumper:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 EventVtxInfoNtupleDumper (const edm::ParameterSet &)
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducer () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

edm::EDGetTokenT< reco::VertexCollectionprimaryVerticesToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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

Definition at line 16 of file EventVtxInfoNtupleDumper.cc.

Constructor & Destructor Documentation

EventVtxInfoNtupleDumper::EventVtxInfoNtupleDumper ( const edm::ParameterSet cfg)

Definition at line 26 of file EventVtxInfoNtupleDumper.cc.

26  :
27  primaryVerticesToken_(consumes<reco::VertexCollection>(cfg.getParameter<InputTag>("primaryVertices")) ){
28  produces<int>( "numPV" ).setBranchAlias( "numPV" );
29  produces<int>( "nTrkPV" ).setBranchAlias( "nTrkPV" );
30  produces<float>( "chi2PV" ).setBranchAlias( "chi2PV" );
31  produces<float>( "ndofPV" ).setBranchAlias( "ndofPV" );
32  produces<float>( "zPV" ).setBranchAlias( "zPV" );
33  produces<float>( "rhoPV" ).setBranchAlias( "rhoPV" );
34  // produces<std::vector< unsigned int > >( "nTrkPV" ).setBranchAlias( "nTrkPV" );
35  // produces<std::vector< float > >( "chi2PV" ).setBranchAlias( "chi2PV" );
36  // produces<std::vector< float > >( "ndofPV" ).setBranchAlias( "ndofPV" );
37 }
T getParameter(std::string const &) const
edm::EDGetTokenT< reco::VertexCollection > primaryVerticesToken_

Member Function Documentation

void EventVtxInfoNtupleDumper::produce ( edm::Event evt,
const edm::EventSetup  
)
overrideprivate

Definition at line 41 of file EventVtxInfoNtupleDumper.cc.

References reco::Vertex::chi2(), DEFINE_FWK_MODULE, edm::Event::getByToken(), reco::Vertex::isFake(), eostools::move(), reco::Vertex::ndof(), reco::Vertex::position(), jets_cff::primaryVertices, primaryVerticesToken_, edm::Event::put(), MetAnalyzer::pv(), TrackValidation_cff::rhoVtx, reco::Vertex::tracksSize(), and reco::Vertex::z().

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

41  {
42 
43  Handle<reco::VertexCollection> primaryVertices; // Collection of primary Vertices
44  evt.getByToken(primaryVerticesToken_, primaryVertices);
45  unique_ptr<int> nVtxs( new int );
46  unique_ptr<int> nTrkVtx( new int );
47  unique_ptr<float> chi2Vtx( new float );
48  unique_ptr<float> ndofVtx( new float );
49  unique_ptr<float> zVtx( new float );
50  unique_ptr<float> rhoVtx( new float );
51  // unique_ptr< vector< unsigned int > > nTrkVtx( new vector< unsigned int > );
52  // unique_ptr< vector< float > > chi2Vtx( new vector< float > );
53  // unique_ptr< vector< float > > ndofVtx( new vector< float > );
54 
55  const reco::Vertex &pv = (*primaryVertices)[0];
56 
57  *nVtxs = -1;
58  *nTrkVtx = -1;
59  *chi2Vtx = -1.0;
60  *ndofVtx = -1.0;
61  *zVtx = -1000;
62  *rhoVtx = -1000;
63  if( !(pv.isFake()) ) {
64  *nVtxs = primaryVertices->size();
65  *nTrkVtx = pv.tracksSize();
66  *chi2Vtx = pv.chi2();
67  *ndofVtx = pv.ndof();
68  *zVtx = pv.z();
69  *rhoVtx = pv.position().Rho();
70  }
71  // nTrkVtx->push_back(pv.tracksSize());
72  // chi2Vtx->push_back(pv.chi2());
73  // ndofVtx->push_back(pv.ndof());
74  evt.put(std::move(nVtxs), "numPV" );
75  evt.put(std::move(nTrkVtx), "nTrkPV" );
76  evt.put(std::move(chi2Vtx), "chi2PV" );
77  evt.put(std::move(ndofVtx), "ndofPV" );
78  evt.put(std::move(zVtx), "zPV" );
79  evt.put(std::move(rhoVtx), "rhoPV" );
80 
81 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
const Point & position() const
position
Definition: Vertex.h:109
edm::EDGetTokenT< reco::VertexCollection > primaryVerticesToken_
def pv(vc)
Definition: MetAnalyzer.py:7
double chi2() const
chi-squares
Definition: Vertex.h:98
double z() const
z coordinate
Definition: Vertex.h:115
double ndof() const
Definition: Vertex.h:105
bool isFake() const
Definition: Vertex.h:72
primaryVertices
Definition: jets_cff.py:24
def move(src, dest)
Definition: eostools.py:511
size_t tracksSize() const
number of tracks
Definition: Vertex.cc:71

Member Data Documentation

edm::EDGetTokenT<reco::VertexCollection> EventVtxInfoNtupleDumper::primaryVerticesToken_
private

Definition at line 22 of file EventVtxInfoNtupleDumper.cc.

Referenced by produce().