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

#include <FastElectronSeedProducer.h>

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

Public Member Functions

virtual void beginRun (edm::Run const &run, const edm::EventSetup &es) override
 
 FastElectronSeedProducer (const edm::ParameterSet &conf)
 
virtual void produce (edm::Event &e, const edm::EventSetup &c) override
 
virtual ~FastElectronSeedProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- 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 ()
 
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 (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

void filterClusters (const edm::Handle< reco::SuperClusterCollection > &superClusters, reco::SuperClusterRefVector &sclRefs)
 

Private Attributes

edm::ESHandle< CaloGeometrycaloGeom_
 
unsigned long long caloGeomCacheId_
 
edm::InputTag clusters_ [2]
 
bool fromTrackerSeeds_
 
EgammaHcalIsolationhcalIso_
 
edm::InputTag hcalRecHits_
 
const HBHERecHitCollectionhithbhe_
 
double hOverEConeSize_
 
double hOverEHBMinE_
 
double hOverEHFMinE_
 
TrajectorySeedCollectioninitialSeedColl_
 
edm::InputTag initialSeeds_
 
FastElectronSeedGeneratormatcher_
 
double maxHOverE_
 
double SCEtCut_
 
edm::InputTag simTracks_
 
edm::InputTag trackerHits_
 

Additional Inherited Members

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

Definition at line 33 of file FastElectronSeedProducer.h.

Constructor & Destructor Documentation

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

Description: EDProducer of ElectronGSPixelSeed objects

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

Definition at line 45 of file FastElectronSeedProducer.cc.

References clusters_, fromTrackerSeeds_, edm::ParameterSet::getParameter(), hcalRecHits_, hOverEConeSize_, hOverEHBMinE_, hOverEHFMinE_, initialSeeds_, matcher_, maxHOverE_, SCEtCut_, simTracks_, and trackerHits_.

46  : matcher_(0), caloGeomCacheId_(0), hcalIso_(0) /*, doubleConeSel_(0) */
47  {
48  edm::ParameterSet pset = iConfig.getParameter<edm::ParameterSet>("SeedConfiguration");
49  SCEtCut_=pset.getParameter<double>("SCEtCut");
50  maxHOverE_=pset.getParameter<double>("maxHOverE");
51  hOverEConeSize_=pset.getParameter<double>("hOverEConeSize");
52  hOverEHBMinE_=pset.getParameter<double>("hOverEHBMinE");
53  hOverEHFMinE_=pset.getParameter<double>("hOverEHFMinE");
54  fromTrackerSeeds_=pset.getParameter<bool>("fromTrackerSeeds");
55  initialSeeds_=pset.getParameter<edm::InputTag>("initialSeeds");
56 
58  iConfig.getParameter<double>("pTMin"),
59  iConfig.getParameter<edm::InputTag>("beamSpot"));
60 
61  // get labels from config'
62  clusters_[0]=iConfig.getParameter<edm::InputTag>("barrelSuperClusters");
63  clusters_[1]=iConfig.getParameter<edm::InputTag>("endcapSuperClusters");
64  simTracks_=iConfig.getParameter<edm::InputTag>("simTracks");
65  trackerHits_=iConfig.getParameter<edm::InputTag>("trackerHits");
66  hcalRecHits_= pset.getParameter<edm::InputTag>("hcalRecHits");
67 
68  //register your products
69  produces<reco::ElectronSeedCollection>();
70 
71 }
T getParameter(std::string const &) const
FastElectronSeedGenerator * matcher_
EgammaHcalIsolation * hcalIso_
FastElectronSeedProducer::~FastElectronSeedProducer ( )
virtual

Definition at line 74 of file FastElectronSeedProducer.cc.

References hcalIso_, and matcher_.

75  {
76  // do anything here that needs to be done at desctruction time
77  // (e.g. close files, deallocate resources etc.)
78  delete matcher_ ;
79  //delete doubleConeSel_ ;
80  delete hcalIso_ ;
81  }
FastElectronSeedGenerator * matcher_
EgammaHcalIsolation * hcalIso_

Member Function Documentation

void FastElectronSeedProducer::beginRun ( edm::Run const &  run,
const edm::EventSetup es 
)
overridevirtual

Reimplemented from edm::EDProducer.

Definition at line 84 of file FastElectronSeedProducer.cc.

References edm::eventsetup::EventSetupRecord::cacheIdentifier(), caloGeom_, caloGeomCacheId_, edm::EventSetup::get(), matcher_, and FastElectronSeedGenerator::setupES().

85  {
86  // get calo geometry
88  {
89  es.get<CaloGeometryRecord>().get(caloGeom_);
90  caloGeomCacheId_=es.get<CaloGeometryRecord>().cacheIdentifier();
91  }
92 
93 // // The H/E calculator
94 // calc_=HoECalculator(caloGeom_);
95 
96  matcher_->setupES(es) ;
97 
98  }
unsigned long long cacheIdentifier() const
void setupES(const edm::EventSetup &setup)
FastElectronSeedGenerator * matcher_
edm::ESHandle< CaloGeometry > caloGeom_
const T & get() const
Definition: EventSetup.h:55
void FastElectronSeedProducer::filterClusters ( const edm::Handle< reco::SuperClusterCollection > &  superClusters,
reco::SuperClusterRefVector sclRefs 
)
private

Definition at line 169 of file FastElectronSeedProducer.cc.

References reco::CaloCluster::energy(), reco::CaloCluster::eta(), i, LogDebug, edm::RefVector< C, T, F >::push_back(), and edm::RefVector< C, T, F >::size().

Referenced by produce().

171  {
172  // filter the superclusters
173  // - with EtCut
174  // - with HoE using calo cone
175  for (unsigned int i=0;i<superClusters->size();++i)
176  {
177  const reco::SuperCluster & scl=(*superClusters)[i] ;
178  if (scl.energy()/cosh(scl.eta())>SCEtCut_)
179  {
180 // //double HoE=calc_(&scl,mhbhe);
181 // double HoE = 0. ;
182 // double hcalE = 0. ;
183 // if (mhbhe_)
184 // {
185 // math::XYZPoint caloPos = scl.position() ;
186 // GlobalPoint pclu(caloPos.x(),caloPos.y(),caloPos.z()) ;
187 // std::auto_ptr<CaloRecHitMetaCollectionV> chosen
188 // = doubleConeSel_->select(pclu,*mhbhe_) ;
189 // CaloRecHitMetaCollectionV::const_iterator i ;
190 // for ( i = chosen->begin () ; i != chosen->end () ; ++i )
191 // {
192 // double hcalHit_E = i->energy() ;
193 // if ( i->detid().subdetId()==HcalBarrel && hcalHit_E > hOverEHBMinE_)
194 // { hcalE += hcalHit_E ; } //HB case
195 // //if ( i->detid().subdetId()==HcalBarrel)
196 // // { std::cout << "[ElectronSeedProducer] HcalBarrel: hcalHit_E, hOverEHBMinE_ " << hcalHit_E << " " << hOverEHBMinE_ << std::endl; }
197 // if ( i->detid().subdetId()==HcalEndcap && hcalHit_E > hOverEHFMinE_)
198 // { hcalE += hcalHit_E ; } //HF case
199 // //if ( i->detid().subdetId()==HcalEndcap)
200 // // { std::cout << "[ElectronSeedProducer] HcalEndcap: hcalHit_E, hOverEHFMinE_ " << hcalHit_E << " " << hOverEHFMinE_ << std::endl; }
201 // }
202 // }
203 // HoE = hcalE/scl.energy() ;
204  //double hcalE = hcalHelper_->hcalESum(scl), HoE = hcalE/scl.energy() ;
205  double newHcalE = hcalIso_->getHcalESum(&scl), newHoE = newHcalE/scl.energy() ;
206  //std::cout << "[ElectronSeedProducer] HoE, maxHOverE_ " << newHoE << " " << HoE << " " << maxHOverE_ << std::endl ;
207  if (newHoE<=maxHOverE_)
208  { sclRefs.push_back(edm::Ref<reco::SuperClusterCollection>(superClusters,i)) ; }
209  }
210  }
211 
212  LogDebug("ElectronSeedProducer")<<"Filtered out "
213  <<sclRefs.size()<<" superclusters from "<<superClusters->size() ;
214  }
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
double eta() const
pseudorapidity of cluster centroid
Definition: CaloCluster.h:161
EgammaHcalIsolation * hcalIso_
double energy() const
cluster energy
Definition: CaloCluster.h:120
double getHcalESum(const reco::Candidate *c) const
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:64
size_type size() const
Size of the RefVector.
Definition: RefVector.h:89
void FastElectronSeedProducer::produce ( edm::Event e,
const edm::EventSetup c 
)
overridevirtual

Implements edm::EDProducer.

Definition at line 101 of file FastElectronSeedProducer.cc.

References caloGeom_, clusters_, filterClusters(), fromTrackerSeeds_, edm::EventSetup::get(), edm::Event::getByLabel(), hcalIso_, hcalRecHits_, hOverEConeSize_, hOverEHBMinE_, hOverEHFMinE_, i, initialSeedColl_, initialSeeds_, LogDebug, matcher_, edm::Handle< T >::product(), edm::ESHandle< class >::product(), edm::Event::put(), FastElectronSeedGenerator::run(), simTracks_, and trackerHits_.

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

102 {
103  LogDebug("FastElectronSeedProducer")<<"[FastElectronSeedProducer::produce] entering " ;
104 
105  // get initial TrajectorySeeds if necessary
106  if (fromTrackerSeeds_) {
107 
109  e.getByLabel(initialSeeds_, hSeeds);
110  initialSeedColl_ = const_cast<TrajectorySeedCollection *> (hSeeds.product());
111 
112  } else {
113 
114  initialSeedColl_=0;// not needed in this case
115 
116  }
117 
119 
120  // Get the Monte Carlo truth (SimTracks)
122  e.getByLabel(simTracks_,theSTC);
123  const edm::SimTrackContainer* theSimTracks = &(*theSTC);
124 
125  // Get the collection of Tracker RecHits
127  e.getByLabel(trackerHits_, theRHC);
128  const SiTrackerGSMatchedRecHit2DCollection* theGSRecHits = &(*theRHC);
129 
130  //Retrieve tracker topology from geometry
132  iSetup.get<IdealGeometryRecord>().get(tTopoHand);
133  const TrackerTopology *tTopo=tTopoHand.product();
134 
135 
136  // get Hcal Rechit collection
138  e.getByLabel(hcalRecHits_,hbhe);
139 
140  // define cone for H/E
141 // delete doubleConeSel_;
142 // doubleConeSel_ = new CaloDualConeSelector(0.,hOverEConeSize_,caloGeom_.product(),DetId::Hcal) ;
143 
144  // HCAL iso deposits
145  delete hcalIso_ ;
147 
148  // Get the two supercluster collections
149  for (unsigned int i=0; i<2; i++) {
150 
151  // invoke algorithm
153  e.getByLabel(clusters_[i],clusters);
154  reco::SuperClusterRefVector clusterRefs;
155  filterClusters(clusters,/*mhbhe_,*/clusterRefs) ;
156  matcher_->run(e,clusterRefs,theGSRecHits,theSimTracks,initialSeedColl_,tTopo,*seeds);
157 
158  }
159 
160  // Save event content
161  std::auto_ptr<reco::ElectronSeedCollection> pSeeds(seeds) ;
162  e.put(pSeeds);
163 
164 }
#define LogDebug(id)
int i
Definition: DBlmapReader.cc:9
FastElectronSeedGenerator * matcher_
edm::ESHandle< CaloGeometry > caloGeom_
EgammaHcalIsolation * hcalIso_
std::vector< TrajectorySeed > TrajectorySeedCollection
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
std::vector< ElectronSeed > ElectronSeedCollection
collection of ElectronSeed objects
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
void run(edm::Event &e, const reco::SuperClusterRefVector &sclRefs, const SiTrackerGSMatchedRecHit2DCollection *theGSRecHits, const edm::SimTrackContainer *theSimTracks, TrajectorySeedCollection *seeds, const TrackerTopology *tTopo, reco::ElectronSeedCollection &out)
TrajectorySeedCollection * initialSeedColl_
T const * product() const
Definition: ESHandle.h:62
T const * product() const
Definition: Handle.h:81
void filterClusters(const edm::Handle< reco::SuperClusterCollection > &superClusters, reco::SuperClusterRefVector &sclRefs)
std::vector< SimTrack > SimTrackContainer

Member Data Documentation

edm::ESHandle<CaloGeometry> FastElectronSeedProducer::caloGeom_
private

Definition at line 72 of file FastElectronSeedProducer.h.

Referenced by beginRun(), and produce().

unsigned long long FastElectronSeedProducer::caloGeomCacheId_
private

Definition at line 73 of file FastElectronSeedProducer.h.

Referenced by beginRun().

edm::InputTag FastElectronSeedProducer::clusters_[2]
private

Definition at line 57 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

bool FastElectronSeedProducer::fromTrackerSeeds_
private

Definition at line 84 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

EgammaHcalIsolation* FastElectronSeedProducer::hcalIso_
private

Definition at line 74 of file FastElectronSeedProducer.h.

Referenced by produce(), and ~FastElectronSeedProducer().

edm::InputTag FastElectronSeedProducer::hcalRecHits_
private

Definition at line 60 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

const HBHERecHitCollection* FastElectronSeedProducer::hithbhe_
private

Definition at line 67 of file FastElectronSeedProducer.h.

double FastElectronSeedProducer::hOverEConeSize_
private

Definition at line 79 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

double FastElectronSeedProducer::hOverEHBMinE_
private

Definition at line 80 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

double FastElectronSeedProducer::hOverEHFMinE_
private

Definition at line 81 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

TrajectorySeedCollection* FastElectronSeedProducer::initialSeedColl_
private

Definition at line 68 of file FastElectronSeedProducer.h.

Referenced by produce().

edm::InputTag FastElectronSeedProducer::initialSeeds_
private

Definition at line 61 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

FastElectronSeedGenerator* FastElectronSeedProducer::matcher_
private
double FastElectronSeedProducer::maxHOverE_
private

Definition at line 78 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer().

double FastElectronSeedProducer::SCEtCut_
private

Definition at line 82 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer().

edm::InputTag FastElectronSeedProducer::simTracks_
private

Definition at line 58 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

edm::InputTag FastElectronSeedProducer::trackerHits_
private

Definition at line 59 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().