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::ProductRegistryHelper

Public Member Functions

virtual void beginRun (edm::Run &run, const edm::EventSetup &es)
 
 FastElectronSeedProducer (const edm::ParameterSet &conf)
 
virtual void produce (edm::Event &e, const edm::EventSetup &c)
 
virtual ~FastElectronSeedProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

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_
 
HBHERecHitMetaCollectionmhbhe_
 
double SCEtCut_
 
edm::InputTag simTracks_
 
edm::InputTag trackerHits_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- 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::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

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),*/ mhbhe_(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_
HBHERecHitMetaCollection * mhbhe_
FastElectronSeedProducer::~FastElectronSeedProducer ( )
virtual

Definition at line 74 of file FastElectronSeedProducer.cc.

References hcalIso_, matcher_, and mhbhe_.

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 mhbhe_ ;
80  //delete doubleConeSel_ ;
81  delete hcalIso_ ;
82  }
FastElectronSeedGenerator * matcher_
EgammaHcalIsolation * hcalIso_
HBHERecHitMetaCollection * mhbhe_

Member Function Documentation

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

Reimplemented from edm::EDProducer.

Definition at line 85 of file FastElectronSeedProducer.cc.

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

86  {
87  // get calo geometry
89  {
90  es.get<CaloGeometryRecord>().get(caloGeom_);
91  caloGeomCacheId_=es.get<CaloGeometryRecord>().cacheIdentifier();
92  }
93 
94 // // The H/E calculator
95 // calc_=HoECalculator(caloGeom_);
96 
97  matcher_->setupES(es) ;
98 
99  }
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 168 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:160
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 
)
virtual

Implements edm::EDProducer.

Definition at line 102 of file FastElectronSeedProducer.cc.

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

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

103 {
104  LogDebug("FastElectronSeedProducer")<<"[FastElectronSeedProducer::produce] entering " ;
105 
106  // get initial TrajectorySeeds if necessary
107  if (fromTrackerSeeds_) {
108 
110  e.getByLabel(initialSeeds_, hSeeds);
111  initialSeedColl_ = const_cast<TrajectorySeedCollection *> (hSeeds.product());
112 
113  } else {
114 
115  initialSeedColl_=0;// not needed in this case
116 
117  }
118 
120 
121  // Get the Monte Carlo truth (SimTracks)
123  e.getByLabel(simTracks_,theSTC);
124  const edm::SimTrackContainer* theSimTracks = &(*theSTC);
125 
126  // Get the collection of Tracker RecHits
128  e.getByLabel(trackerHits_, theRHC);
129  const SiTrackerGSMatchedRecHit2DCollection* theGSRecHits = &(*theRHC);
130 
131  // get Hcal Rechit collection
133  delete mhbhe_ ;
134  if (e.getByLabel(hcalRecHits_,hbhe))
135  { mhbhe_= new HBHERecHitMetaCollection(*hbhe) ; }
136  else
137  { mhbhe_ = 0 ; }
138 
139  // define cone for H/E
140 // delete doubleConeSel_;
141 // doubleConeSel_ = new CaloDualConeSelector(0.,hOverEConeSize_,caloGeom_.product(),DetId::Hcal) ;
142 
143  // HCAL iso deposits
144  delete hcalIso_ ;
146 
147  // Get the two supercluster collections
148  for (unsigned int i=0; i<2; i++) {
149 
150  // invoke algorithm
152  e.getByLabel(clusters_[i],clusters);
153  reco::SuperClusterRefVector clusterRefs;
154  filterClusters(clusters,/*mhbhe_,*/clusterRefs) ;
155  matcher_->run(e,clusterRefs,theGSRecHits,theSimTracks,initialSeedColl_,*seeds);
156 
157  }
158 
159  // Save event content
160  std::auto_ptr<reco::ElectronSeedCollection> pSeeds(seeds) ;
161  e.put(pSeeds);
162 
163 }
#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:85
void run(edm::Event &e, const reco::SuperClusterRefVector &sclRefs, const SiTrackerGSMatchedRecHit2DCollection *theGSRecHits, const edm::SimTrackContainer *theSimTracks, TrajectorySeedCollection *seeds, reco::ElectronSeedCollection &out)
SimpleCaloRecHitMetaCollection< HBHERecHitCollection > HBHERecHitMetaCollection
std::vector< ElectronSeed > ElectronSeedCollection
collection of ElectronSeed objects
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
TrajectorySeedCollection * initialSeedColl_
T const * product() const
Definition: Handle.h:74
void filterClusters(const edm::Handle< reco::SuperClusterCollection > &superClusters, reco::SuperClusterRefVector &sclRefs)
HBHERecHitMetaCollection * mhbhe_
std::vector< SimTrack > SimTrackContainer

Member Data Documentation

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

Definition at line 73 of file FastElectronSeedProducer.h.

Referenced by beginRun(), and produce().

unsigned long long FastElectronSeedProducer::caloGeomCacheId_
private

Definition at line 74 of file FastElectronSeedProducer.h.

Referenced by beginRun().

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

Definition at line 58 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

bool FastElectronSeedProducer::fromTrackerSeeds_
private

Definition at line 86 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

EgammaHcalIsolation* FastElectronSeedProducer::hcalIso_
private

Definition at line 75 of file FastElectronSeedProducer.h.

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

edm::InputTag FastElectronSeedProducer::hcalRecHits_
private

Definition at line 61 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

const HBHERecHitCollection* FastElectronSeedProducer::hithbhe_
private

Definition at line 68 of file FastElectronSeedProducer.h.

double FastElectronSeedProducer::hOverEConeSize_
private

Definition at line 81 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

double FastElectronSeedProducer::hOverEHBMinE_
private

Definition at line 82 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

double FastElectronSeedProducer::hOverEHFMinE_
private

Definition at line 83 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

TrajectorySeedCollection* FastElectronSeedProducer::initialSeedColl_
private

Definition at line 69 of file FastElectronSeedProducer.h.

Referenced by produce().

edm::InputTag FastElectronSeedProducer::initialSeeds_
private

Definition at line 62 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

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

Definition at line 80 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer().

HBHERecHitMetaCollection* FastElectronSeedProducer::mhbhe_
private

Definition at line 77 of file FastElectronSeedProducer.h.

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

double FastElectronSeedProducer::SCEtCut_
private

Definition at line 84 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer().

edm::InputTag FastElectronSeedProducer::simTracks_
private

Definition at line 59 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().

edm::InputTag FastElectronSeedProducer::trackerHits_
private

Definition at line 60 of file FastElectronSeedProducer.h.

Referenced by FastElectronSeedProducer(), and produce().