CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FastElectronSeedProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: ElectronProducers
4 // Class: FastElectronSeedProducer
5 //
13 //
14 // Original Author: Patrick Janot
15 //
16 //
17 
18 // user include files
21 
25 
29 
34 
41 
43 
44 #include <iostream>
45 
47  : matcher_(0), caloGeomCacheId_(0), hcalIso_(0) /*, doubleConeSel_(0) */
48  {
49  edm::ParameterSet pset = iConfig.getParameter<edm::ParameterSet>("SeedConfiguration");
50  SCEtCut_=pset.getParameter<double>("SCEtCut");
51  maxHOverE_=pset.getParameter<double>("maxHOverE");
52  hOverEConeSize_=pset.getParameter<double>("hOverEConeSize");
53  hOverEHBMinE_=pset.getParameter<double>("hOverEHBMinE");
54  hOverEHFMinE_=pset.getParameter<double>("hOverEHFMinE");
55  fromTrackerSeeds_=pset.getParameter<bool>("fromTrackerSeeds");
56  initialSeeds_=pset.getParameter<edm::InputTag>("initialSeeds");
57 
59  iConfig.getParameter<double>("pTMin"),
60  iConfig.getParameter<edm::InputTag>("beamSpot"));
61 
62  // get labels from config'
63  clusters_[0]=iConfig.getParameter<edm::InputTag>("barrelSuperClusters");
64  clusters_[1]=iConfig.getParameter<edm::InputTag>("endcapSuperClusters");
65  simTracks_=iConfig.getParameter<edm::InputTag>("simTracks");
66  trackerHits_=iConfig.getParameter<edm::InputTag>("trackerHits");
67  hcalRecHits_= pset.getParameter<edm::InputTag>("hcalRecHits");
68 
69  //register your products
70  produces<reco::ElectronSeedCollection>();
71 
72 }
73 
74 
76  {
77  // do anything here that needs to be done at desctruction time
78  // (e.g. close files, deallocate resources etc.)
79  delete matcher_ ;
80  //delete doubleConeSel_ ;
81  delete hcalIso_ ;
82  }
83 
84 void
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  }
100 
101 void
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  //Retrieve tracker topology from geometry
133  iSetup.get<TrackerTopologyRcd>().get(tTopoHand);
134  const TrackerTopology *tTopo=tTopoHand.product();
135 
136 
137  // get Hcal Rechit collection
139  e.getByLabel(hcalRecHits_,hbhe);
140 
141  // define cone for H/E
142 // delete doubleConeSel_;
143 // doubleConeSel_ = new CaloDualConeSelector(0.,hOverEConeSize_,caloGeom_.product(),DetId::Hcal) ;
144 
145  // HCAL iso deposits
146  delete hcalIso_ ;
148 
149  // Get the two supercluster collections
150  for (unsigned int i=0; i<2; i++) {
151 
152  // invoke algorithm
154  e.getByLabel(clusters_[i],clusters);
155  reco::SuperClusterRefVector clusterRefs;
156  filterClusters(clusters,/*mhbhe_,*/clusterRefs) ;
157  matcher_->run(e,clusterRefs,theGSRecHits,theSimTracks,initialSeedColl_,tTopo,*seeds);
158 
159  }
160 
161  // Save event content
162  std::auto_ptr<reco::ElectronSeedCollection> pSeeds(seeds) ;
163  e.put(pSeeds);
164 
165 }
166 
167 
168 void
171  reco::SuperClusterRefVector & sclRefs )
172  {
173  // filter the superclusters
174  // - with EtCut
175  // - with HoE using calo cone
176  for (unsigned int i=0;i<superClusters->size();++i)
177  {
178  const reco::SuperCluster & scl=(*superClusters)[i] ;
179  if (scl.energy()/cosh(scl.eta())>SCEtCut_)
180  {
181 // //double HoE=calc_(&scl,mhbhe);
182 // double HoE = 0. ;
183 // double hcalE = 0. ;
184 // if (mhbhe_)
185 // {
186 // math::XYZPoint caloPos = scl.position() ;
187 // GlobalPoint pclu(caloPos.x(),caloPos.y(),caloPos.z()) ;
188 // std::auto_ptr<CaloRecHitMetaCollectionV> chosen
189 // = doubleConeSel_->select(pclu,*mhbhe_) ;
190 // CaloRecHitMetaCollectionV::const_iterator i ;
191 // for ( i = chosen->begin () ; i != chosen->end () ; ++i )
192 // {
193 // double hcalHit_E = i->energy() ;
194 // if ( i->detid().subdetId()==HcalBarrel && hcalHit_E > hOverEHBMinE_)
195 // { hcalE += hcalHit_E ; } //HB case
196 // //if ( i->detid().subdetId()==HcalBarrel)
197 // // { std::cout << "[ElectronSeedProducer] HcalBarrel: hcalHit_E, hOverEHBMinE_ " << hcalHit_E << " " << hOverEHBMinE_ << std::endl; }
198 // if ( i->detid().subdetId()==HcalEndcap && hcalHit_E > hOverEHFMinE_)
199 // { hcalE += hcalHit_E ; } //HF case
200 // //if ( i->detid().subdetId()==HcalEndcap)
201 // // { std::cout << "[ElectronSeedProducer] HcalEndcap: hcalHit_E, hOverEHFMinE_ " << hcalHit_E << " " << hOverEHFMinE_ << std::endl; }
202 // }
203 // }
204 // HoE = hcalE/scl.energy() ;
205  //double hcalE = hcalHelper_->hcalESum(scl), HoE = hcalE/scl.energy() ;
206  double newHcalE = hcalIso_->getHcalESum(&scl), newHoE = newHcalE/scl.energy() ;
207  //std::cout << "[ElectronSeedProducer] HoE, maxHOverE_ " << newHoE << " " << HoE << " " << maxHOverE_ << std::endl ;
208  if (newHoE<=maxHOverE_)
209  { sclRefs.push_back(edm::Ref<reco::SuperClusterCollection>(superClusters,i)) ; }
210  }
211  }
212 
213  LogDebug("ElectronSeedProducer")<<"Filtered out "
214  <<sclRefs.size()<<" superclusters from "<<superClusters->size() ;
215  }
#define LogDebug(id)
T getParameter(std::string const &) const
unsigned long long cacheIdentifier() const
int i
Definition: DBlmapReader.cc:9
void setupES(const edm::EventSetup &setup)
FastElectronSeedGenerator * matcher_
double eta() const
pseudorapidity of cluster centroid
Definition: CaloCluster.h:163
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:115
virtual void beginRun(edm::Run const &run, const edm::EventSetup &es) override
double energy() const
cluster energy
Definition: CaloCluster.h:121
virtual void produce(edm::Event &e, const edm::EventSetup &c) override
std::vector< ElectronSeed > ElectronSeedCollection
collection of ElectronSeed objects
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:413
T const * product() const
Definition: Handle.h:81
void run(edm::Event &e, const reco::SuperClusterRefVector &sclRefs, const SiTrackerGSMatchedRecHit2DCollection *theGSRecHits, const edm::SimTrackContainer *theSimTracks, TrajectorySeedCollection *seeds, const TrackerTopology *tTopo, reco::ElectronSeedCollection &out)
const T & get() const
Definition: EventSetup.h:55
TrajectorySeedCollection * initialSeedColl_
T const * product() const
Definition: ESHandle.h:86
FastElectronSeedProducer(const edm::ParameterSet &conf)
void filterClusters(const edm::Handle< reco::SuperClusterCollection > &superClusters, reco::SuperClusterRefVector &sclRefs)
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:62
size_type size() const
Size of the RefVector.
Definition: RefVector.h:99
std::vector< SimTrack > SimTrackContainer
Definition: Run.h:41