CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
PreshowerClusterProducer Class Reference
Inheritance diagram for PreshowerClusterProducer:
edm::stream::EDProducer<>

Public Types

typedef math::XYZPoint Point
 
- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Public Member Functions

 PreshowerClusterProducer (const edm::ParameterSet &ps)
 
void produce (edm::Event &evt, const edm::EventSetup &es) override
 
void set (const edm::EventSetup &es)
 
 ~PreshowerClusterProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Attributes

double aEta_ [4]
 
double alpha0_
 
double alpha1_
 
double alpha2_
 
double alpha3_
 
std::string assocSClusterCollection_
 
double bEta_ [4]
 
edm::ESGetToken< CaloGeometry, CaloGeometryRecordcaloGeometryToken_
 
edm::EDGetTokenT< reco::SuperClusterCollectionendcapSClusterToken_
 
edm::ESHandle< ESChannelStatusesChannelStatus_
 
edm::ESGetToken< ESChannelStatus, ESChannelStatusRcdesChannelStatusToken_
 
edm::ESHandle< ESEEIntercalibConstantsesEEInterCalib_
 
edm::ESGetToken< ESEEIntercalibConstants, ESEEIntercalibConstantsRcdesEEInterCalibToken_
 
edm::ESHandle< ESGainesgain_
 
edm::ESGetToken< ESGain, ESGainRcdesGainToken_
 
edm::ESHandle< ESMIPToGeVConstantesMIPToGeV_
 
edm::ESGetToken< ESMIPToGeVConstant, ESMIPToGeVConstantRcdesMIPToGeVToken_
 
edm::ESHandle< ESMissingEnergyCalibrationesMissingECalib_
 
edm::ESGetToken< ESMissingEnergyCalibration, ESMissingEnergyCalibrationRcdesMissingECalibToken_
 
double etThresh_
 
double gamma0_
 
double gamma1_
 
double gamma2_
 
double gamma3_
 
double mip_
 
int nEvt_
 
PreshowerClusterAlgopresh_algo
 
float preshClustECut
 
std::string preshClusterCollectionX_
 
std::string preshClusterCollectionY_
 
edm::EDGetTokenT< EcalRecHitCollectionpreshHitsToken_
 
int preshNclust_
 

Detailed Description

Definition at line 46 of file PreshowerClusterProducer.cc.

Member Typedef Documentation

◆ Point

Definition at line 48 of file PreshowerClusterProducer.cc.

Constructor & Destructor Documentation

◆ PreshowerClusterProducer()

PreshowerClusterProducer::PreshowerClusterProducer ( const edm::ParameterSet ps)
explicit

Definition at line 110 of file PreshowerClusterProducer.cc.

References edm::ParameterSet::getParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

110  {
111  // use configuration file to setup input/output collection names
112  preshHitsToken_ = consumes<EcalRecHitCollection>(ps.getParameter<edm::InputTag>("preshRecHitProducer"));
113 
114  // Name of a SuperClusterCollection to make associations:
116  consumes<reco::SuperClusterCollection>(ps.getParameter<edm::InputTag>("endcapSClusterProducer"));
117 
118  esGainToken_ = esConsumes<ESGain, ESGainRcd>();
119  esMIPToGeVToken_ = esConsumes<ESMIPToGeVConstant, ESMIPToGeVConstantRcd>();
120  esEEInterCalibToken_ = esConsumes<ESEEIntercalibConstants, ESEEIntercalibConstantsRcd>();
121  esMissingECalibToken_ = esConsumes<ESMissingEnergyCalibration, ESMissingEnergyCalibrationRcd>();
122  esChannelStatusToken_ = esConsumes<ESChannelStatus, ESChannelStatusRcd>();
123  caloGeometryToken_ = esConsumes<CaloGeometry, CaloGeometryRecord>();
124 
125  // Output collections:
126  preshClusterCollectionX_ = ps.getParameter<std::string>("preshClusterCollectionX");
127  preshClusterCollectionY_ = ps.getParameter<std::string>("preshClusterCollectionY");
128  preshNclust_ = ps.getParameter<int>("preshNclust");
129 
130  etThresh_ = ps.getParameter<double>("etThresh");
131 
132  assocSClusterCollection_ = ps.getParameter<std::string>("assocSClusterCollection");
133 
134  produces<reco::PreshowerClusterCollection>(preshClusterCollectionX_);
135  produces<reco::PreshowerClusterCollection>(preshClusterCollectionY_);
136  produces<reco::SuperClusterCollection>(assocSClusterCollection_);
137 
138  float preshStripECut = ps.getParameter<double>("preshStripEnergyCut");
139  int preshSeededNst = ps.getParameter<int>("preshSeededNstrip");
140  preshClustECut = ps.getParameter<double>("preshClusterEnergyCut");
141 
142  presh_algo = new PreshowerClusterAlgo(preshStripECut, preshClustECut, preshSeededNst);
143 
144  nEvt_ = 0;
145 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::ESGetToken< ESEEIntercalibConstants, ESEEIntercalibConstantsRcd > esEEInterCalibToken_
edm::ESGetToken< ESMIPToGeVConstant, ESMIPToGeVConstantRcd > esMIPToGeVToken_
PreshowerClusterAlgo * presh_algo
edm::ESGetToken< ESGain, ESGainRcd > esGainToken_
edm::ESGetToken< ESChannelStatus, ESChannelStatusRcd > esChannelStatusToken_
edm::EDGetTokenT< EcalRecHitCollection > preshHitsToken_
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > caloGeometryToken_
edm::ESGetToken< ESMissingEnergyCalibration, ESMissingEnergyCalibrationRcd > esMissingECalibToken_
edm::EDGetTokenT< reco::SuperClusterCollection > endcapSClusterToken_

◆ ~PreshowerClusterProducer()

PreshowerClusterProducer::~PreshowerClusterProducer ( )
override

Definition at line 147 of file PreshowerClusterProducer.cc.

147 { delete presh_algo; }
PreshowerClusterAlgo * presh_algo

Member Function Documentation

◆ produce()

void PreshowerClusterProducer::produce ( edm::Event evt,
const edm::EventSetup es 
)
override

Definition at line 149 of file PreshowerClusterProducer.cc.

References GetRecoTauVFromDQM_MC_cff::cl2, EgHLTOffHistBins_cfi::deltaE, MillePedeFileConverter_cfg::e, StorageManager_cfg::e1, DetId::Ecal, EcalPreshower, reco::CaloCluster::energy(), ESCondObjectContainer< T >::find(), edm::Event::getByToken(), edm::EventSetup::getHandle(), ESCondObjectContainer< T >::getMap(), CaloGeometry::getSubdetectorGeometry(), mps_fire::i, LogTrace, eostools::move(), point, edm::Handle< T >::product(), edm::PtrVector< T >::push_back(), edm::Event::put(), HI_PhotonSkim_cff::rechits, reco::PreshowerCluster::setBCRef(), reco::SuperCluster::setPreshowerPlanesStatus(), funct::sin(), X, BeamSpotPI::Y, and BeamSpotPI::Z.

149  {
152 
153  // get the ECAL geometry:
155 
156  // retrieve ES-EE intercalibration constants and channel status
157  set(es);
158  const ESChannelStatus* channelStatus = esChannelStatus_.product();
159 
161 
162  // create unique_ptr to a PreshowerClusterCollection
163  auto clusters_p1 = std::make_unique<reco::PreshowerClusterCollection>();
164  auto clusters_p2 = std::make_unique<reco::PreshowerClusterCollection>();
165  // create new collection of corrected super clusters
166  auto superclusters_p = std::make_unique<reco::SuperClusterCollection>();
167 
168  std::unique_ptr<CaloSubdetectorTopology> topology_p;
169  if (geometry_p)
170  topology_p = std::make_unique<EcalPreshowerTopology>();
171 
172  // fetch the product (pSuperClusters)
173  evt.getByToken(endcapSClusterToken_, pSuperClusters);
174  const reco::SuperClusterCollection* SClusts = pSuperClusters.product();
175 
176  // fetch the product (RecHits)
177  evt.getByToken(preshHitsToken_, pRecHits);
178  // pointer to the object in the product
179  const EcalRecHitCollection* rechits = pRecHits.product(); // EcalRecHitCollection hit_collection = *rhcHandle;
180 
181  LogTrace("EcalClusters") << "PreshowerClusterProducerInfo: ### Total # of preshower RecHits: " << rechits->size();
182 
183  // make the map of rechits:
184  std::map<DetId, EcalRecHit> rechits_map;
186  for (it = rechits->begin(); it != rechits->end(); it++) {
187  // remove bad ES rechits
188  if (it->recoFlag() == 1 || it->recoFlag() == 14 || (it->recoFlag() <= 10 && it->recoFlag() >= 5))
189  continue;
190  //Make the map of DetID, EcalRecHit pairs
191  rechits_map.insert(std::make_pair(it->id(), *it));
192  }
193  // The set of used DetID's for a given event:
194  std::set<DetId> used_strips;
195  used_strips.clear();
196  LogTrace("EcalClusters") << "PreshowerClusterProducerInfo: ### rechits_map of size " << rechits_map.size()
197  << " was created!";
198 
199  reco::PreshowerClusterCollection clusters1, clusters2; // output collection of corrected PCs
200  reco::SuperClusterCollection new_SC; // output collection of corrected SCs
201 
202  //make cycle over super clusters
203  reco::SuperClusterCollection::const_iterator it_super;
204  int isc = 0;
205  for (it_super = SClusts->begin(); it_super != SClusts->end(); ++it_super) {
206  float e1 = 0;
207  float e2 = 0;
208  float deltaE = 0;
209 
211  ++isc;
212  LogTrace("EcalClusters") << " superE = " << it_super->energy() << " superETA = " << it_super->eta()
213  << " superPHI = " << it_super->phi();
214 
215  int nBC = 0;
216  int condP1 = 1; // 0: dead channel; 1: active channel
217  int condP2 = 1;
218  reco::CaloCluster_iterator bc_iter = it_super->clustersBegin();
219  for (; bc_iter != it_super->clustersEnd(); ++bc_iter) {
220  if (geometry_p) {
221  // Get strip position at intersection point of the line EE - Vertex:
222  double X = (*bc_iter)->x();
223  double Y = (*bc_iter)->y();
224  double Z = (*bc_iter)->z();
225  const GlobalPoint point(X, Y, Z);
226 
227  DetId tmp1 = (dynamic_cast<const EcalPreshowerGeometry*>(geometry_p))->getClosestCellInPlane(point, 1);
228  DetId tmp2 = (dynamic_cast<const EcalPreshowerGeometry*>(geometry_p))->getClosestCellInPlane(point, 2);
229  ESDetId strip1 = (tmp1 == DetId(0)) ? ESDetId(0) : ESDetId(tmp1);
230  ESDetId strip2 = (tmp2 == DetId(0)) ? ESDetId(0) : ESDetId(tmp2);
231 
232  if (nBC == 0) {
233  if (strip1 != ESDetId(0) && strip2 != ESDetId(0)) {
234  ESChannelStatusMap::const_iterator status_p1 = channelStatus->getMap().find(strip1);
235  ESChannelStatusMap::const_iterator status_p2 = channelStatus->getMap().find(strip2);
236  if (status_p1->getStatusCode() == 1)
237  condP1 = 0;
238  if (status_p2->getStatusCode() == 1)
239  condP2 = 0;
240  } else if (strip1 == ESDetId(0))
241  condP1 = 0;
242  else if (strip2 == ESDetId(0))
243  condP2 = 0;
244  }
245 
246  // Get a vector of ES clusters (found by the PreshSeeded algorithm) associated with a given EE basic cluster.
247  for (int i = 0; i < preshNclust_; i++) {
249  presh_algo->makeOneCluster(strip1, &used_strips, &rechits_map, geometry_p, topology_p.get());
250  cl1.setBCRef(*bc_iter);
251  if (cl1.energy() > preshClustECut) {
252  clusters1.push_back(cl1);
253  e1 += cl1.energy();
254  }
256  presh_algo->makeOneCluster(strip2, &used_strips, &rechits_map, geometry_p, topology_p.get());
257  cl2.setBCRef(*bc_iter);
258 
259  if (cl2.energy() > preshClustECut) {
260  clusters2.push_back(cl2);
261  e2 += cl2.energy();
262  }
263  } // end of cycle over ES clusters
264  }
265 
266  new_BC.push_back(*bc_iter);
267  nBC++;
268  } // end of cycle over BCs
269 
270  LogTrace("EcalClusters") << " For SC #" << isc - 1 << ", containing " << it_super->clustersSize()
271  << " basic clusters, PreshowerClusterAlgo made " << clusters1.size() << " in X plane and "
272  << clusters2.size() << " in Y plane "
273  << " preshower clusters ";
274 
275  // update energy of the SuperCluster
276  if (e1 + e2 > 1.0e-10) {
277  e1 = e1 / mip_; // GeV to #MIPs
278  e2 = e2 / mip_;
279 
280  if (condP1 == 1 && condP2 == 1) {
281  deltaE = gamma0_ * (e1 + alpha0_ * e2);
282  } else if (condP1 == 1 && condP2 == 0) {
283  deltaE = gamma1_ * (e1 + alpha1_ * e2);
284  } else if (condP1 == 0 && condP2 == 1) {
285  deltaE = gamma2_ * (e1 + alpha2_ * e2);
286  } else if (condP1 == 0 && condP2 == 0) {
287  deltaE = gamma3_ * (e1 + alpha3_ * e2);
288  }
289  }
290 
291  //corrected Energy
292  float E = it_super->energy() + deltaE;
293 
294  LogTrace("EcalClusters") << " Creating corrected SC ";
295 
296  reco::SuperCluster sc(E, it_super->position(), it_super->seed(), new_BC, deltaE);
297  if (condP1 == 1 && condP2 == 1)
299  else if (condP1 == 1 && condP2 == 0)
300  sc.setPreshowerPlanesStatus(1);
301  else if (condP1 == 0 && condP2 == 1)
302  sc.setPreshowerPlanesStatus(2);
303  else if (condP1 == 0 && condP2 == 0)
304  sc.setPreshowerPlanesStatus(3);
305 
306  if (sc.energy() * sin(sc.position().theta()) > etThresh_)
307  new_SC.push_back(sc);
308  LogTrace("EcalClusters") << " SuperClusters energies: new E = " << sc.energy()
309  << " vs. old E =" << it_super->energy();
310 
311  } // end of cycle over SCs
312 
313  // copy the preshower clusters into collections and put in the Event:
314  clusters_p1->assign(clusters1.begin(), clusters1.end());
315  clusters_p2->assign(clusters2.begin(), clusters2.end());
316  // put collection of preshower clusters to the event
317  evt.put(std::move(clusters_p1), preshClusterCollectionX_);
318  evt.put(std::move(clusters_p2), preshClusterCollectionY_);
319  LogTrace("EcalClusters") << "Preshower clusters added to the event";
320 
321  // put collection of corrected super clusters to the event
322  superclusters_p->assign(new_SC.begin(), new_SC.end());
323  evt.put(std::move(superclusters_p), assocSClusterCollection_);
324  LogTrace("EcalClusters") << "Corrected SClusters added to the event";
325 
326  nEvt_++;
327 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
void push_back(Ptr< T > const &iPtr)
Definition: PtrVector.h:149
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
T const * product() const
Definition: Handle.h:70
std::vector< EcalRecHit >::const_iterator const_iterator
#define X(str)
Definition: MuonsGrabber.cc:38
PreshowerClusterAlgo * presh_algo
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:540
const_iterator find(uint32_t rawId) const
#define LogTrace(id)
reco::PreshowerCluster makeOneCluster(ESDetId strip, HitsID *used_strips, RecHitsMap *rechits_map, const CaloSubdetectorGeometry *geometry_p, const CaloSubdetectorTopology *topology_p)
std::vector< SuperCluster > SuperClusterCollection
collection of SuperCluser objectr
edm::ESHandle< ESChannelStatus > esChannelStatus_
void setBCRef(const CaloClusterPtr &r)
DetIds of component RecHits – now inherited from CaloCluster.
std::vector< PreshowerCluster > PreshowerClusterCollection
collection of PreshowerCluster objects
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
double energy() const
cluster energy
Definition: CaloCluster.h:149
void setPreshowerPlanesStatus(const uint32_t &status)
Definition: SuperCluster.h:138
Definition: DetId.h:17
edm::EDGetTokenT< EcalRecHitCollection > preshHitsToken_
std::vector< Item >::const_iterator const_iterator
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > caloGeometryToken_
const self & getMap() const
edm::EDGetTokenT< reco::SuperClusterCollection > endcapSClusterToken_
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34
def move(src, dest)
Definition: eostools.py:511
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle point
Definition: invegas.h:5

◆ set()

void PreshowerClusterProducer::set ( const edm::EventSetup es)

Definition at line 329 of file PreshowerClusterProducer.cc.

References PedestalClient_cfi::gain, ESEEIntercalibConstants::getAlphaHigh0(), ESEEIntercalibConstants::getAlphaHigh1(), ESEEIntercalibConstants::getAlphaHigh2(), ESEEIntercalibConstants::getAlphaHigh3(), ESEEIntercalibConstants::getAlphaLow0(), ESEEIntercalibConstants::getAlphaLow1(), ESEEIntercalibConstants::getAlphaLow2(), ESEEIntercalibConstants::getAlphaLow3(), ESMissingEnergyCalibration::getConstAEta0(), ESMissingEnergyCalibration::getConstAEta1(), ESMissingEnergyCalibration::getConstAEta2(), ESMissingEnergyCalibration::getConstAEta3(), ESMissingEnergyCalibration::getConstBEta0(), ESMissingEnergyCalibration::getConstBEta1(), ESMissingEnergyCalibration::getConstBEta2(), ESMissingEnergyCalibration::getConstBEta3(), ESMIPToGeVConstant::getESValueHigh(), ESMIPToGeVConstant::getESValueLow(), ESEEIntercalibConstants::getGammaHigh0(), ESEEIntercalibConstants::getGammaHigh1(), ESEEIntercalibConstants::getGammaHigh2(), ESEEIntercalibConstants::getGammaHigh3(), ESEEIntercalibConstants::getGammaLow1(), ESEEIntercalibConstants::getGammaLow2(), and edm::EventSetup::getHandle().

329  {
331  const ESGain* gain = esgain_.product();
332 
333  double ESGain = gain->getESGain();
334 
336  const ESMIPToGeVConstant* mipToGeV = esMIPToGeV_.product();
337 
338  mip_ = (ESGain == 1) ? mipToGeV->getESValueLow() : mipToGeV->getESValueHigh();
339 
341 
343  const ESEEIntercalibConstants* esEEInterCalib = esEEInterCalib_.product();
344 
345  // both planes work
346  gamma0_ = (ESGain == 1) ? 0.02 : esEEInterCalib->getGammaHigh0();
347  alpha0_ = (ESGain == 1) ? esEEInterCalib->getAlphaLow0() : esEEInterCalib->getAlphaHigh0();
348 
349  // only first plane works
350  gamma1_ = (ESGain == 1) ? (0.02 * esEEInterCalib->getGammaLow1()) : esEEInterCalib->getGammaHigh1();
351  alpha1_ = (ESGain == 1) ? esEEInterCalib->getAlphaLow1() : esEEInterCalib->getAlphaHigh1();
352 
353  // only second plane works
354  gamma2_ = (ESGain == 1) ? (0.02 * esEEInterCalib->getGammaLow2()) : esEEInterCalib->getGammaHigh2();
355  alpha2_ = (ESGain == 1) ? esEEInterCalib->getAlphaLow2() : esEEInterCalib->getAlphaHigh2();
356 
357  // both planes do not work
358  gamma3_ = (ESGain == 1) ? 0.02 : esEEInterCalib->getGammaHigh3();
359  alpha3_ = (ESGain == 1) ? esEEInterCalib->getAlphaLow3() : esEEInterCalib->getAlphaHigh3();
360 
362  const ESMissingEnergyCalibration* esMissingECalib = esMissingECalib_.product();
363 
364  // |eta| < 1.9
365  aEta_[0] = esMissingECalib->getConstAEta0();
366  bEta_[0] = esMissingECalib->getConstBEta0();
367 
368  // 1.9 < |eta| < 2.1
369  aEta_[1] = esMissingECalib->getConstAEta1();
370  bEta_[1] = esMissingECalib->getConstBEta1();
371 
372  // 2.1 < |eta| < 2.3
373  aEta_[2] = esMissingECalib->getConstAEta2();
374  bEta_[2] = esMissingECalib->getConstBEta2();
375 
376  // 2.3 < |eta| < 2.5
377  aEta_[3] = esMissingECalib->getConstAEta3();
378  bEta_[3] = esMissingECalib->getConstBEta3();
379 }
float getESValueHigh() const
edm::ESGetToken< ESEEIntercalibConstants, ESEEIntercalibConstantsRcd > esEEInterCalibToken_
edm::ESHandle< ESMissingEnergyCalibration > esMissingECalib_
Definition: ESGain.h:7
edm::ESHandle< ESGain > esgain_
edm::ESGetToken< ESMIPToGeVConstant, ESMIPToGeVConstantRcd > esMIPToGeVToken_
T const * product() const
Definition: ESHandle.h:86
edm::ESHandle< ESChannelStatus > esChannelStatus_
float getESValueLow() const
edm::ESGetToken< ESGain, ESGainRcd > esGainToken_
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
edm::ESGetToken< ESChannelStatus, ESChannelStatusRcd > esChannelStatusToken_
edm::ESHandle< ESMIPToGeVConstant > esMIPToGeV_
edm::ESHandle< ESEEIntercalibConstants > esEEInterCalib_
edm::ESGetToken< ESMissingEnergyCalibration, ESMissingEnergyCalibrationRcd > esMissingECalibToken_

Member Data Documentation

◆ aEta_

double PreshowerClusterProducer::aEta_[4]
private

Definition at line 96 of file PreshowerClusterProducer.cc.

◆ alpha0_

double PreshowerClusterProducer::alpha0_
private

Definition at line 92 of file PreshowerClusterProducer.cc.

◆ alpha1_

double PreshowerClusterProducer::alpha1_
private

Definition at line 93 of file PreshowerClusterProducer.cc.

◆ alpha2_

double PreshowerClusterProducer::alpha2_
private

Definition at line 94 of file PreshowerClusterProducer.cc.

◆ alpha3_

double PreshowerClusterProducer::alpha3_
private

Definition at line 95 of file PreshowerClusterProducer.cc.

◆ assocSClusterCollection_

std::string PreshowerClusterProducer::assocSClusterCollection_
private

Definition at line 73 of file PreshowerClusterProducer.cc.

◆ bEta_

double PreshowerClusterProducer::bEta_[4]
private

Definition at line 97 of file PreshowerClusterProducer.cc.

◆ caloGeometryToken_

edm::ESGetToken<CaloGeometry, CaloGeometryRecord> PreshowerClusterProducer::caloGeometryToken_
private

Definition at line 85 of file PreshowerClusterProducer.cc.

◆ endcapSClusterToken_

edm::EDGetTokenT<reco::SuperClusterCollection> PreshowerClusterProducer::endcapSClusterToken_
private

Definition at line 62 of file PreshowerClusterProducer.cc.

◆ esChannelStatus_

edm::ESHandle<ESChannelStatus> PreshowerClusterProducer::esChannelStatus_
private

Definition at line 79 of file PreshowerClusterProducer.cc.

◆ esChannelStatusToken_

edm::ESGetToken<ESChannelStatus, ESChannelStatusRcd> PreshowerClusterProducer::esChannelStatusToken_
private

Definition at line 84 of file PreshowerClusterProducer.cc.

◆ esEEInterCalib_

edm::ESHandle<ESEEIntercalibConstants> PreshowerClusterProducer::esEEInterCalib_
private

Definition at line 77 of file PreshowerClusterProducer.cc.

◆ esEEInterCalibToken_

edm::ESGetToken<ESEEIntercalibConstants, ESEEIntercalibConstantsRcd> PreshowerClusterProducer::esEEInterCalibToken_
private

Definition at line 82 of file PreshowerClusterProducer.cc.

◆ esgain_

edm::ESHandle<ESGain> PreshowerClusterProducer::esgain_
private

Definition at line 75 of file PreshowerClusterProducer.cc.

◆ esGainToken_

edm::ESGetToken<ESGain, ESGainRcd> PreshowerClusterProducer::esGainToken_
private

Definition at line 80 of file PreshowerClusterProducer.cc.

◆ esMIPToGeV_

edm::ESHandle<ESMIPToGeVConstant> PreshowerClusterProducer::esMIPToGeV_
private

Definition at line 76 of file PreshowerClusterProducer.cc.

◆ esMIPToGeVToken_

edm::ESGetToken<ESMIPToGeVConstant, ESMIPToGeVConstantRcd> PreshowerClusterProducer::esMIPToGeVToken_
private

Definition at line 81 of file PreshowerClusterProducer.cc.

◆ esMissingECalib_

edm::ESHandle<ESMissingEnergyCalibration> PreshowerClusterProducer::esMissingECalib_
private

Definition at line 78 of file PreshowerClusterProducer.cc.

◆ esMissingECalibToken_

edm::ESGetToken<ESMissingEnergyCalibration, ESMissingEnergyCalibrationRcd> PreshowerClusterProducer::esMissingECalibToken_
private

Definition at line 83 of file PreshowerClusterProducer.cc.

◆ etThresh_

double PreshowerClusterProducer::etThresh_
private

Definition at line 70 of file PreshowerClusterProducer.cc.

◆ gamma0_

double PreshowerClusterProducer::gamma0_
private

Definition at line 88 of file PreshowerClusterProducer.cc.

◆ gamma1_

double PreshowerClusterProducer::gamma1_
private

Definition at line 89 of file PreshowerClusterProducer.cc.

◆ gamma2_

double PreshowerClusterProducer::gamma2_
private

Definition at line 90 of file PreshowerClusterProducer.cc.

◆ gamma3_

double PreshowerClusterProducer::gamma3_
private

Definition at line 91 of file PreshowerClusterProducer.cc.

◆ mip_

double PreshowerClusterProducer::mip_
private

Definition at line 87 of file PreshowerClusterProducer.cc.

◆ nEvt_

int PreshowerClusterProducer::nEvt_
private

Definition at line 58 of file PreshowerClusterProducer.cc.

◆ presh_algo

PreshowerClusterAlgo* PreshowerClusterProducer::presh_algo
private

Definition at line 99 of file PreshowerClusterProducer.cc.

◆ preshClustECut

float PreshowerClusterProducer::preshClustECut
private

Definition at line 69 of file PreshowerClusterProducer.cc.

◆ preshClusterCollectionX_

std::string PreshowerClusterProducer::preshClusterCollectionX_
private

Definition at line 65 of file PreshowerClusterProducer.cc.

◆ preshClusterCollectionY_

std::string PreshowerClusterProducer::preshClusterCollectionY_
private

Definition at line 66 of file PreshowerClusterProducer.cc.

◆ preshHitsToken_

edm::EDGetTokenT<EcalRecHitCollection> PreshowerClusterProducer::preshHitsToken_
private

Definition at line 61 of file PreshowerClusterProducer.cc.

◆ preshNclust_

int PreshowerClusterProducer::preshNclust_
private

Definition at line 68 of file PreshowerClusterProducer.cc.