CMS 3D CMS Logo

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

Store electron partner track conversion-rejection quantities ("dist" and "dcot") in the TP tree. More...

Inheritance diagram for ElectronConversionRejectionVars:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 ElectronConversionRejectionVars (const edm::ParameterSet &iConfig)
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 
 ~ElectronConversionRejectionVars () override
 
- 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 Attributes

edm::EDGetTokenT< reco::GsfElectronCollectiongsfElecsToken_
 
edm::EDGetTokenT< edm::View< reco::Candidate > > probesToken_
 
edm::EDGetTokenT< reco::TrackCollectiontracksToken_
 

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::ProducerBase
ProducesCollector producesCollector ()
 
- 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

Store electron partner track conversion-rejection quantities ("dist" and "dcot") in the TP tree.

Author
Kalanand Mishra Fermi National Accelerator Laboratory

Definition at line 31 of file ElectronConversionRejectionVars.cc.

Constructor & Destructor Documentation

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

Definition at line 44 of file ElectronConversionRejectionVars.cc.

46  tracksToken_(consumes<reco::TrackCollection>(edm::InputTag("generalTracks"))),
47  gsfElecsToken_(consumes<reco::GsfElectronCollection>(edm::InputTag("gsfElectrons"))) {
48  produces<edm::ValueMap<float>>("dist");
49  produces<edm::ValueMap<float>>("dcot");
50  produces<edm::ValueMap<float>>("convradius");
51  produces<edm::ValueMap<float>>("passConvRej");
52 }
T getParameter(std::string const &) const
edm::EDGetTokenT< edm::View< reco::Candidate > > probesToken_
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< reco::TrackCollection > tracksToken_
edm::EDGetTokenT< reco::GsfElectronCollection > gsfElecsToken_
ElectronConversionRejectionVars::~ElectronConversionRejectionVars ( )
override

Definition at line 54 of file ElectronConversionRejectionVars.cc.

54 {}

Member Function Documentation

void ElectronConversionRejectionVars::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 56 of file ElectronConversionRejectionVars.cc.

References ConversionInfo::dcot, DEFINE_FWK_MODULE, ConversionInfo::dist, pdwgLeptonRecoSkim_cfi::electronCollection, trigObjTnPSource_cfi::filler, edm::Event::getByToken(), egammaTools::getConversionInfo(), gsfElecsToken_, eostools::move(), probesToken_, edm::Handle< T >::product(), edm::Event::put(), ConversionInfo::radiusOfConversion, tracksToken_, and contentValuesCheck::values.

56  {
57  using namespace edm;
58 
59  // read input
63 
64  iEvent.getByToken(probesToken_, probes);
65  iEvent.getByToken(tracksToken_, tracks_h);
66  iEvent.getByToken(gsfElecsToken_, elHandle);
67 
68  float evt_bField = 3.8;
69 
70  // prepare vector for output
71  std::vector<float> values;
72  std::vector<float> values2;
73  std::vector<float> values3;
74  std::vector<float> values4;
75 
76  // fill: use brute force
77  double dist = 0.0;
78  double dcot = 0.0;
79  double convradius = 0.0;
80  double passConvRej = 0.0;
81 
82  View<reco::Candidate>::const_iterator probe, endprobes = probes->end();
84  reco::GsfElectronCollection::const_iterator eleIt = electronCollection->begin();
85 
86  for (probe = probes->begin(); probe != endprobes; ++probe) {
87  for (eleIt = electronCollection->begin(); eleIt != electronCollection->end(); eleIt++) {
88  if (fabs(eleIt->et() - probe->et()) < 0.05 && fabs(eleIt->eta() - probe->eta()) < 0.01 &&
89  fabs(eleIt->phi() - probe->phi()) < 0.01) {
90  //we have a match
91  ConversionInfo convInfo = egammaTools::getConversionInfo(*eleIt, tracks_h, evt_bField);
92  dist = convInfo.dist;
93  dcot = convInfo.dcot;
94  convradius = convInfo.radiusOfConversion;
95  if (fabs(dist) > 0.02 && fabs(dcot) > 0.02)
96  passConvRej = 1.0;
97  break; //got our guy, so break
98  }
99  }
100  values.push_back(dist);
101  values2.push_back(dcot);
102  values3.push_back(convradius);
103  values4.push_back(passConvRej);
104  }
105 
106  // convert into ValueMap and store
107  auto valMap = std::make_unique<ValueMap<float>>();
109  filler.insert(probes, values.begin(), values.end());
110  filler.fill();
111  iEvent.put(std::move(valMap), "dist");
112 
113  // ---> same for dcot
114  auto valMap2 = std::make_unique<ValueMap<float>>();
115  ValueMap<float>::Filler filler2(*valMap2);
116  filler2.insert(probes, values2.begin(), values2.end());
117  filler2.fill();
118  iEvent.put(std::move(valMap2), "dcot");
119 
120  // ---> same for convradius
121  auto valMap3 = std::make_unique<ValueMap<float>>();
122  ValueMap<float>::Filler filler3(*valMap3);
123  filler3.insert(probes, values3.begin(), values3.end());
124  filler3.fill();
125  iEvent.put(std::move(valMap3), "convradius");
126 
127  // ---> same for passConvRej
128  auto valMap4 = std::make_unique<ValueMap<float>>();
129  ValueMap<float>::Filler filler4(*valMap4);
130  filler4.insert(probes, values4.begin(), values4.end());
131  filler4.fill();
132  iEvent.put(std::move(valMap4), "passConvRej");
133 }
const double dist
Definition: ConversionInfo.h:9
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
edm::EDGetTokenT< edm::View< reco::Candidate > > probesToken_
ConversionInfo getConversionInfo(const reco::GsfElectronCore &, const edm::Handle< reco::TrackCollection > &ctftracks_h, const edm::Handle< reco::GsfTrackCollection > &gsftracks_h, const double bFieldAtOrigin, const double minFracSharedHits=0.45)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
edm::EDGetTokenT< reco::TrackCollection > tracksToken_
edm::EDGetTokenT< reco::GsfElectronCollection > gsfElecsToken_
const double radiusOfConversion
const double dcot
T const * product() const
Definition: Handle.h:69
HLT enums.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

edm::EDGetTokenT<reco::GsfElectronCollection> ElectronConversionRejectionVars::gsfElecsToken_
private

Definition at line 41 of file ElectronConversionRejectionVars.cc.

Referenced by produce().

edm::EDGetTokenT<edm::View<reco::Candidate> > ElectronConversionRejectionVars::probesToken_
private

Definition at line 39 of file ElectronConversionRejectionVars.cc.

Referenced by produce().

edm::EDGetTokenT<reco::TrackCollection> ElectronConversionRejectionVars::tracksToken_
private

Definition at line 40 of file ElectronConversionRejectionVars.cc.

Referenced by produce().