116 endcapSClusterToken_ =
119 esGainToken_ = esConsumes<ESGain, ESGainRcd>();
120 esMIPToGeVToken_ = esConsumes<ESMIPToGeVConstant, ESMIPToGeVConstantRcd>();
121 esEEInterCalibToken_ = esConsumes<ESEEIntercalibConstants, ESEEIntercalibConstantsRcd>();
122 esMissingECalibToken_ = esConsumes<ESMissingEnergyCalibration, ESMissingEnergyCalibrationRcd>();
123 esChannelStatusToken_ = esConsumes<ESChannelStatus, ESChannelStatusRcd>();
124 caloGeometryToken_ = esConsumes<CaloGeometry, CaloGeometryRecord>();
132 produces<reco::PreshowerClusterCollection>(preshClusterCollectionX_);
133 produces<reco::PreshowerClusterCollection>(preshClusterCollectionY_);
134 produces<reco::SuperClusterCollection>(assocSClusterCollection_);
136 float esStripECut = ps.
getParameter<
double>(
"esStripEnergyCut");
137 esPhiClusterDeltaEta_ = ps.
getParameter<
double>(
"esPhiClusterDeltaEta");
138 esPhiClusterDeltaPhi_ = ps.
getParameter<
double>(
"esPhiClusterDeltaPhi");
161 auto clusters_p1 = std::make_unique<reco::PreshowerClusterCollection>();
162 auto clusters_p2 = std::make_unique<reco::PreshowerClusterCollection>();
164 auto superclusters_p = std::make_unique<reco::SuperClusterCollection>();
167 evt.
getByToken(endcapSClusterToken_, pSuperClusters);
175 LogTrace(
"EcalClusters") <<
"PreshowerPhiClusterProducerInfo: ### Total # of preshower RecHits: " << rechits->
size();
178 std::map<DetId, EcalRecHit> rechits_map;
180 for (it = rechits->
begin(); it != rechits->
end(); it++) {
182 if (it->recoFlag() == 1 || it->recoFlag() == 14 || (it->recoFlag() <= 10 && it->recoFlag() >= 5))
185 rechits_map.insert(std::make_pair(it->id(), *it));
188 std::set<DetId> used_strips;
190 LogTrace(
"EcalClusters") <<
"PreshowerPhiClusterProducerInfo: ### rechits_map of size " << rechits_map.size()
197 reco::SuperClusterCollection::const_iterator it_super;
199 for (it_super = SClusts->begin(); it_super != SClusts->end(); ++it_super) {
206 LogTrace(
"EcalClusters") <<
" superE = " << it_super->energy() <<
" superETA = " << it_super->eta()
207 <<
" superPHI = " << it_super->phi();
216 float minDeltaPhi = 0;
220 for (; bc_iter != it_super->clustersEnd(); ++bc_iter) {
222 refPhi = (*bc_iter)->phi();
233 maxDeltaPhi += esPhiClusterDeltaPhi_;
234 minDeltaPhi -= esPhiClusterDeltaPhi_;
237 for (bc_iter = it_super->clustersBegin(); bc_iter != it_super->clustersEnd(); ++bc_iter) {
240 double X = (*bc_iter)->x();
241 double Y = (*bc_iter)->y();
242 double Z = (*bc_iter)->z();
254 if (status_p1->getStatusCode() == 1)
256 if (status_p2->getStatusCode() == 1)
258 }
else if (strip1 ==
ESDetId(0)) {
260 }
else if (strip2 ==
ESDetId(0)) {
268 strip1, &used_strips, &rechits_map, geometry_p, esPhiClusterDeltaEta_, minDeltaPhi, maxDeltaPhi);
270 clusters1.push_back(cl1);
275 strip2, &used_strips, &rechits_map, geometry_p, esPhiClusterDeltaEta_, minDeltaPhi, maxDeltaPhi);
277 clusters2.push_back(cl2);
286 LogTrace(
"EcalClusters") <<
" For SC #" << isc - 1 <<
", containing " << it_super->clustersSize()
287 <<
" basic clusters, PreshowerPhiClusterAlgo made " << clusters1.size()
288 <<
" in X plane and " << clusters2.size() <<
" in Y plane "
289 <<
" preshower clusters ";
292 if (e1 + e2 > 1.0
e-10) {
296 if (condP1 == 1 && condP2 == 1) {
297 deltaE = gamma0_ * (e1 + alpha0_ * e2);
298 }
else if (condP1 == 1 && condP2 == 0) {
299 deltaE = gamma1_ * (e1 + alpha1_ * e2);
300 }
else if (condP1 == 0 && condP2 == 1) {
301 deltaE = gamma2_ * (e1 + alpha2_ * e2);
302 }
else if (condP1 == 0 && condP2 == 0) {
303 deltaE = gamma3_ * (e1 + alpha3_ * e2);
308 float E = it_super->energy() + deltaE;
310 LogTrace(
"EcalClusters") <<
" Creating corrected SC ";
314 sc.setPreshowerEnergyPlane2(e2 * mip_);
315 if (condP1 == 1 && condP2 == 1)
316 sc.setPreshowerPlanesStatus(0);
317 else if (condP1 == 1 && condP2 == 0)
318 sc.setPreshowerPlanesStatus(1);
319 else if (condP1 == 0 && condP2 == 1)
320 sc.setPreshowerPlanesStatus(2);
321 else if (condP1 == 0 && condP2 == 0)
322 sc.setPreshowerPlanesStatus(3);
325 if (sc.energy() *
sin(sc.position().theta()) > etThresh_)
326 new_SC.push_back(sc);
328 new_SC.push_back(sc);
334 clusters_p1->assign(clusters1.begin(), clusters1.end());
335 clusters_p2->assign(clusters2.begin(), clusters2.end());
337 evt.
put(
std::move(clusters_p1), preshClusterCollectionX_);
338 evt.
put(
std::move(clusters_p2), preshClusterCollectionY_);
339 LogTrace(
"EcalClusters") <<
"Preshower clusters added to the event";
342 superclusters_p->assign(new_SC.begin(), new_SC.end());
343 evt.
put(
std::move(superclusters_p), assocSClusterCollection_);
344 LogTrace(
"EcalClusters") <<
"Corrected SClusters added to the event";
349 const ESGain* gain = esgain_.product();
353 esMIPToGeV_ = es.
getHandle(esMIPToGeVToken_);
358 esChannelStatus_ = es.
getHandle(esChannelStatusToken_);
360 esEEInterCalib_ = es.
getHandle(esEEInterCalibToken_);
364 gamma0_ = (ESGain == 1) ? 0.02 : esEEInterCalib->
getGammaHigh0();
376 gamma3_ = (ESGain == 1) ? 0.02 : esEEInterCalib->
getGammaHigh3();
379 esMissingECalib_ = es.
getHandle(esMissingECalibToken_);
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > caloGeometryToken_
constexpr double deltaPhi(double phi1, double phi2)
float getConstAEta1() const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
edm::ESGetToken< ESChannelStatus, ESChannelStatusRcd > esChannelStatusToken_
PreshowerPhiClusterAlgo * presh_algo
bool getByToken(EDGetToken token, Handle< PROD > &result) const
#define DEFINE_FWK_MODULE(type)
void push_back(Ptr< T > const &iPtr)
const self & getMap() const
float getESValueLow() const
Sin< T >::type sin(const T &t)
edm::ESGetToken< ESGain, ESGainRcd > esGainToken_
float getConstAEta2() const
std::vector< EcalRecHit >::const_iterator const_iterator
float getGammaLow2() const
void set(const edm::EventSetup &es)
edm::ESGetToken< ESMissingEnergyCalibration, ESMissingEnergyCalibrationRcd > esMissingECalibToken_
std::string preshClusterCollectionX_
std::string assocSClusterCollection_
float getAlphaHigh3() const
float getGammaHigh2() const
edm::ESHandle< ESMIPToGeVConstant > esMIPToGeV_
edm::ESHandle< ESMissingEnergyCalibration > esMissingECalib_
float getConstAEta0() const
std::vector< SuperCluster > SuperClusterCollection
collection of SuperCluser objectr
edm::ESGetToken< ESEEIntercalibConstants, ESEEIntercalibConstantsRcd > esEEInterCalibToken_
void setBCRef(const CaloClusterPtr &r)
DetIds of component RecHits – now inherited from CaloCluster.
const_iterator find(uint32_t rawId) const
float getConstBEta0() const
edm::ESHandle< ESEEIntercalibConstants > esEEInterCalib_
std::vector< PreshowerCluster > PreshowerClusterCollection
collection of PreshowerCluster objects
double energy() const
cluster energy
edm::ESHandle< ESChannelStatus > esChannelStatus_
float esPhiClusterDeltaEta_
float getConstBEta2() const
float getConstAEta3() const
std::string preshClusterCollectionY_
float getGammaHigh3() const
float getConstBEta1() const
float getGammaHigh1() const
const_iterator end() const
void produce(edm::Event &evt, const edm::EventSetup &es) override
~PreshowerPhiClusterProducer() override
T const * product() const
float getAlphaHigh0() const
XYZPointD XYZPoint
point in space with cartesian internal representation
float getAlphaLow3() const
float getAlphaHigh2() const
T getParameter(std::string const &) const
float getAlphaLow2() const
std::vector< Item >::const_iterator const_iterator
float getGammaLow1() const
float getAlphaHigh1() const
edm::EDGetTokenT< reco::SuperClusterCollection > endcapSClusterToken_
edm::ESHandle< ESGain > esgain_
float getConstBEta3() const
float getGammaHigh0() const
float getAlphaLow1() const
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
float getESValueHigh() const
edm::EDGetTokenT< EcalRecHitCollection > preshHitToken_
edm::ESGetToken< ESMIPToGeVConstant, ESMIPToGeVConstantRcd > esMIPToGeVToken_
void setPreshowerEnergyPlane1(double preshowerEnergy1)
PreshowerPhiClusterProducer(const edm::ParameterSet &ps)
*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
float getAlphaLow0() const
const_iterator begin() const
float esPhiClusterDeltaPhi_