CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HiEgammaSCCorrectionMaker.cc
Go to the documentation of this file.
4 
7 
11 
21 
24 
25 
26 #include <string>
27 
29 {
30 
31  // The verbosity level
32  std::string debugString = ps.getParameter<std::string>("VerbosityLevel");
33  if (debugString == "DEBUG") verbosity_ = HiEgammaSCEnergyCorrectionAlgo::pDEBUG;
34  else if (debugString == "INFO") verbosity_ = HiEgammaSCEnergyCorrectionAlgo::pINFO;
36 
37  // the input producers
38  rHInputProducerTag_ = ps.getParameter<edm::InputTag>("recHitProducer");
39  sCInputProducerTag_ = ps.getParameter<edm::InputTag>("rawSuperClusterProducer");
40  rHInputProducer_ = consumes<EcalRecHitCollection>(rHInputProducerTag_);
41  sCInputProducer_ = consumes<reco::SuperClusterCollection>(sCInputProducerTag_);
42  std::string sCAlgo_str = ps.getParameter<std::string>("superClusterAlgo");
43 
44  // determine which BasicCluster algo we are correcting for
45  //And obtain forrection parameters form cfg file
46  edm::ParameterSet fCorrPset;
47  if (sCAlgo_str=="Hybrid") {
49  fCorrPset = ps.getParameter<edm::ParameterSet>("hyb_fCorrPset");
50  } else if (sCAlgo_str=="Island") {
52  fCorrPset = ps.getParameter<edm::ParameterSet>("isl_fCorrPset");
53  } else if (sCAlgo_str=="DynamicHybrid") {
55  fCorrPset = ps.getParameter<edm::ParameterSet>("dyn_fCorrPset");
56  } else if (sCAlgo_str=="Multi5x5") {
58  fCorrPset = ps.getParameter<edm::ParameterSet>("fix_fCorrPset");
59  } else {
60  edm::LogError("HiEgammaSCCorrectionMakerError")
61  << "Error! SuperClusterAlgo in config file must be Hybrid or Island: "
62  << sCAlgo_str << " Using Hybrid by default";
64  }
65 
66  // set correction algo parameters
67  applyEnergyCorrection_ = ps.getParameter<bool>("applyEnergyCorrection");
68  sigmaElectronicNoise_ = ps.getParameter<double>("sigmaElectronicNoise");
69 
70  etThresh_ = ps.getParameter<double>("etThresh");
71 
72  // set the producer parameters
73  outputCollection_ = ps.getParameter<std::string>("corectedSuperClusterCollection");
74  produces<reco::SuperClusterCollection>(outputCollection_);
75 
76  // instanciate the correction algo object
77  energyCorrector_ = new HiEgammaSCEnergyCorrectionAlgo(sigmaElectronicNoise_, sCAlgo_, fCorrPset, verbosity_);
78 
79 
80  // energy correction class
82  EnergyCorrection_ = EcalClusterFunctionFactory::get()->create("EcalClusterEnergyCorrection", ps);
83 }
84 
86 {
87  delete energyCorrector_;
88 }
89 
90 void
92 {
93  using namespace edm;
94 
95  // initialize energy correction class
98 
99  // get the collection geometry:
100  edm::ESHandle<CaloGeometry> geoHandle;
101  es.get<CaloGeometryRecord>().get(geoHandle);
102  const CaloGeometry& geometry = *geoHandle;
103  const CaloSubdetectorGeometry *geometry_p;
104 
105  edm::ESHandle<CaloTopology> pTopology;
108 
109  std::string rHInputCollection = rHInputProducerTag_.instance();
110  if(rHInputCollection == "EcalRecHitsEB") {
111  geometry_p = geometry.getSubdetectorGeometry(DetId::Ecal, EcalBarrel);
112  } else if(rHInputCollection == "EcalRecHitsEE") {
113  geometry_p = geometry.getSubdetectorGeometry(DetId::Ecal, EcalEndcap);
114  } else if(rHInputCollection == "EcalRecHitsPS") {
115  geometry_p = geometry.getSubdetectorGeometry(DetId::Ecal, EcalPreshower);
116  } else {
117  std::string str = "\n\nSCCorrectionMaker encountered invalied ecalhitcollection type: " + rHInputCollection + ".\n\n";
118  throw(std::runtime_error( str.c_str() ));
119  }
120 
121  // Get raw SuperClusters from the event
122  Handle<reco::SuperClusterCollection> pRawSuperClusters;
123  try {
124  evt.getByToken(sCInputProducer_, pRawSuperClusters);
125  } catch ( cms::Exception& ex ) {
126  edm::LogError("HiEgammaSCCorrectionMakerError")
127  << "Error! can't get the rawSuperClusters "
129  }
130 
131  // Get the RecHits from the event
133  try {
134  evt.getByToken(rHInputProducer_, pRecHits);
135  } catch ( cms::Exception& ex ) {
136  edm::LogError("HiEgammaSCCorrectionMakerError")
137  << "Error! can't get the RecHits "
139  }
140 
141  // Create a pointer to the RecHits and raw SuperClusters
142  const EcalRecHitCollection *hitCollection = pRecHits.product();
143  const reco::SuperClusterCollection *rawClusters = pRawSuperClusters.product();
144 
145  // Define a collection of corrected SuperClusters to put back into the event
146  std::auto_ptr<reco::SuperClusterCollection> corrClusters(new reco::SuperClusterCollection);
147 
148  // Loop over raw clusters and make corrected ones
149  reco::SuperClusterCollection::const_iterator aClus;
150  for(aClus = rawClusters->begin(); aClus != rawClusters->end(); aClus++)
151  {
152  reco::SuperCluster newClus;
155  else
156  newClus=*aClus;
157 
158  if(newClus.energy()*sin(newClus.position().theta())>etThresh_) {
159  corrClusters->push_back(newClus);
160  }
161  }
162  // Put collection of corrected SuperClusters into the event
163  evt.put(corrClusters, outputCollection_);
164 }
165 
T getParameter(std::string const &) const
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:126
CaloTopology const * topology(0)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
reco::SuperCluster applyCorrection(const reco::SuperCluster &cl, const EcalRecHitCollection &rhc, reco::CaloCluster::AlgoId theAlgo, const CaloSubdetectorGeometry *geometry, const CaloTopology *topology, EcalClusterFunctionBaseClass *EnergyCorrectionClass)
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
EcalClusterFunctionBaseClass * EnergyCorrection_
HiEgammaSCEnergyCorrectionAlgo * energyCorrector_
std::vector< SuperCluster > SuperClusterCollection
collection of SuperCluser objectr
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
HiEgammaSCEnergyCorrectionAlgo::VerbosityLevel verbosity_
edm::EDGetTokenT< EcalRecHitCollection > rHInputProducer_
HiEgammaSCCorrectionMaker(const edm::ParameterSet &)
double energy() const
cluster energy
Definition: CaloCluster.h:121
const T & get() const
Definition: EventSetup.h:56
T const * product() const
Definition: ESHandle.h:86
std::string const & label() const
Definition: InputTag.h:43
ESHandle< TrackerGeometry > geometry
virtual void produce(edm::Event &, const edm::EventSetup &) override
edm::ESHandle< CaloTopology > theCaloTopo_
virtual void init(const edm::EventSetup &es)=0
edm::EDGetTokenT< reco::SuperClusterCollection > sCInputProducer_
std::string const & instance() const
Definition: InputTag.h:44
reco::CaloCluster::AlgoId sCAlgo_
T get(const Candidate &c)
Definition: component.h:55