CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ElectronHcalHelper.cc
Go to the documentation of this file.
1 
8 
9 using namespace reco ;
10 
12  : cfg_(cfg), caloGeomCacheId_(0), mhbhe_(0), hcalIso_(0), towerIso1_(0), towerIso2_(0),hadTower_(0)
13 { }
14 
16  {
17 
18  if (cfg_.hOverEConeSize==0)
19  { return ; }
20 
21  if (cfg_.useTowers)
22  {
23  delete hadTower_ ;
24  hadTower_ = new EgammaHadTower(es) ;
25  }
26  else
27  {
28  unsigned long long newCaloGeomCacheId_
29  = es.get<CaloGeometryRecord>().cacheIdentifier() ;
30  if (caloGeomCacheId_!=newCaloGeomCacheId_)
31  {
32  caloGeomCacheId_ = newCaloGeomCacheId_ ;
33  es.get<CaloGeometryRecord>().get(caloGeom_) ;
34  }
35  }
36  }
37 
39  {
40  if (cfg_.hOverEConeSize==0)
41  { return ; }
42 
43  if (cfg_.useTowers)
44  {
45  delete towerIso1_ ; towerIso1_ = 0 ;
46  delete towerIso2_ ; towerIso2_ = 0 ;
47 
49  if (!evt.getByToken(cfg_.hcalTowers,towersH_)){
50  edm::LogError("ElectronHcalHelper::readEvent")
51  <<"failed to get the hcal towers";
52  }
56  }
57  else
58  {
59  delete hcalIso_ ; hcalIso_ = 0 ;
60  delete mhbhe_ ; mhbhe_ = 0 ;
61 
63  if (!evt.getByToken(cfg_.hcalRecHits,hbhe_)) {
64  edm::LogError("ElectronHcalHelper::readEvent")
65  <<"failed to get the rechits";
66  }
67  mhbhe_= new HBHERecHitMetaCollection(*hbhe_) ;
69  }
70  }
71 
72 std::vector<CaloTowerDetId> ElectronHcalHelper::hcalTowersBehindClusters( const reco::SuperCluster & sc )
73  { return hadTower_->towersOf(sc) ; }
74 
75 double ElectronHcalHelper::hcalESumDepth1BehindClusters( const std::vector<CaloTowerDetId> & towers )
76  { return hadTower_->getDepth1HcalESum(towers) ; }
77 
78 double ElectronHcalHelper::hcalESumDepth2BehindClusters( const std::vector<CaloTowerDetId> & towers )
79  { return hadTower_->getDepth2HcalESum(towers) ; }
80 
81 double ElectronHcalHelper::hcalESum( const SuperCluster & sc, const std::vector<CaloTowerDetId > * excludeTowers )
82  {
83  if (cfg_.hOverEConeSize==0)
84  { return 0 ; }
85  if (cfg_.useTowers)
86  { return(hcalESumDepth1(sc,excludeTowers)+hcalESumDepth2(sc,excludeTowers)) ; }
87  else
88  { return hcalIso_->getHcalESum(&sc) ; }
89  }
90 
91 double ElectronHcalHelper::hcalESumDepth1( const SuperCluster & sc ,const std::vector<CaloTowerDetId > * excludeTowers )
92  {
93  if (cfg_.hOverEConeSize==0)
94  { return 0 ; }
95  if (cfg_.useTowers)
96  { return towerIso1_->getTowerESum(&sc, excludeTowers) ; }
97  else
98  { return hcalIso_->getHcalESumDepth1(&sc) ; }
99  }
100 
101 double ElectronHcalHelper::hcalESumDepth2( const SuperCluster & sc ,const std::vector<CaloTowerDetId > * excludeTowers )
102  {
103  if (cfg_.hOverEConeSize==0)
104  { return 0 ; }
105  if (cfg_.useTowers)
106  { return towerIso2_->getTowerESum(&sc, excludeTowers) ; }
107  else
108  { return hcalIso_->getHcalESumDepth2(&sc) ; }
109  }
110 
112  {
113  if (cfg_.hOverEConeSize==0)
114  { return ; }
115  if (cfg_.useTowers)
116  {
117  delete towerIso1_ ;
118  delete towerIso2_ ;
119  delete hadTower_;
120  }
121  else
122  {
123  delete hcalIso_ ;
124  delete mhbhe_ ;
125  }
126  }
127 
128 
EgammaTowerIsolation * towerIso1_
double hcalESum(const reco::SuperCluster &, const std::vector< CaloTowerDetId > *excludeTowers=0)
void readEvent(const edm::Event &)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
double hcalESumDepth2BehindClusters(const std::vector< CaloTowerDetId > &towers)
std::vector< CaloTowerDetId > hcalTowersBehindClusters(const reco::SuperCluster &sc)
void checkSetup(const edm::EventSetup &)
const Configuration cfg_
double hcalESumDepth1BehindClusters(const std::vector< CaloTowerDetId > &towers)
void setTowerCollection(const CaloTowerCollection *towercollection)
ElectronHcalHelper(const Configuration &)
double getDepth1HcalESum(const reco::SuperCluster &sc) const
edm::ESHandle< CaloGeometry > caloGeom_
double hcalESumDepth2(const reco::SuperCluster &, const std::vector< CaloTowerDetId > *excludeTowers=0)
edm::EDGetTokenT< HBHERecHitCollection > hcalRecHits
double getHcalESumDepth2(const reco::Candidate *c) const
SimpleCaloRecHitMetaCollection< HBHERecHitCollection > HBHERecHitMetaCollection
unsigned long long caloGeomCacheId_
double getTowerESum(const reco::Candidate *cand, const std::vector< CaloTowerDetId > *detIdToExclude=0) const
const T & get() const
Definition: EventSetup.h:55
EgammaHcalIsolation * hcalIso_
T const * product() const
Definition: Handle.h:81
double getHcalESum(const reco::Candidate *c) const
return(e1-e2)*(e1-e2)+dp *dp
std::vector< CaloTowerDetId > towersOf(const reco::SuperCluster &sc) const
double getDepth2HcalESum(const reco::SuperCluster &sc) const
HBHERecHitMetaCollection * mhbhe_
double hcalESumDepth1(const reco::SuperCluster &, const std::vector< CaloTowerDetId > *excludeTowers=0)
EgammaHadTower * hadTower_
edm::EDGetTokenT< CaloTowerCollection > hcalTowers
double getHcalESumDepth1(const reco::Candidate *c) const
EgammaTowerIsolation * towerIso2_