68 edm::LogWarning(
"subdetector geometry not available") <<
"EcalPreshower geometry is missing" << std::endl;
98 for (it = pESRecHits->begin(); it != pESRecHits->end(); ++it) {
100 std::vector<int> badf = {
101 EcalRecHit::ESFlags::kESDead,
102 EcalRecHit::ESFlags::kESTwoGoodRatios,
103 EcalRecHit::ESFlags::kESBadRatioFor12,
104 EcalRecHit::ESFlags::kESBadRatioFor23Upper,
105 EcalRecHit::ESFlags::kESBadRatioFor23Lower,
106 EcalRecHit::ESFlags::kESTS1Largest,
107 EcalRecHit::ESFlags::kESTS3Largest,
108 EcalRecHit::ESFlags::kESTS3Negative,
109 EcalRecHit::ESFlags::kESTS13Sigmas,
112 if (it->checkFlags(badf))
continue;
147 if ( cluster.size() == 0 ) {
148 throw cms::Exception(
"InvalidCluster") <<
"The cluster has no crystals!";
150 DetId id = (cluster.hitsAndFractions()[0]).
first;
157 throw cms::Exception(
"InvalidSubdetector") <<
"The subdetId() " <<
id.subdetId() <<
" does not correspond to EcalBarrel neither EcalEndcap";
169 DetId id = cluster.seed();
176 return (*theSeedHit).time();
184 std::vector<std::pair<DetId, float> > clusterComponents = (cluster).hitsAndFractions() ;
191 float weightedTsum = 0;
192 float sumOfWeights = 0;
194 for (std::vector<std::pair<DetId, float> >::const_iterator detitr = clusterComponents.begin(); detitr != clusterComponents.end(); detitr++ )
201 float lasercalib = 1.;
202 lasercalib =
laser->getLaserCorrection( detitr->first, ev.
time());
207 icalconst = (*icalit);
210 edm::LogError(
"EcalClusterLazyTools") <<
"No intercalib const found for xtal " << (detitr->first).rawId() <<
"bailing out";
215 if ( (detitr ->
first).subdetId() ==
EcalBarrel ) adcToGeV = float(
agc->getEBValue());
216 else if ( (detitr ->
first).subdetId() ==
EcalEndcap ) adcToGeV =
float(
agc->getEEValue());
218 if (icalconst>0 && lasercalib>0 && adcToGeV>0) adc= (*oneHit).energy()/(icalconst*lasercalib*adcToGeV);
221 if( (detitr ->
first).subdetId() ==
EcalBarrel && adc< (1.1*20) )
continue;
222 if( (detitr ->
first).subdetId() ==
EcalEndcap && adc< (2.2*20) )
continue;
225 if(! (*oneHit).isTimeErrorValid())
continue;
227 float timeError = (*oneHit).timeError();
230 if (timeError>0.6) timeError =
sqrt( timeError*timeError - 0.6*0.6 + 0.15*0.15);
231 else timeError =
sqrt( timeError*timeError + 0.15*0.15);
234 weightedTsum += (*oneHit).time() / (timeError*timeError);
235 sumOfWeights += 1. / (timeError*timeError);
240 if ( sumOfWeights ==0 )
return -999;
241 else return ( weightedTsum / sumOfWeights);
265 if (!(fabs(cluster.
eta()) > 1.6 && fabs(cluster.
eta()) < 3.))
return 0.;
271 float phoESShapeIXIX =
getESShape(phoESHitsIXIX);
272 float phoESShapeIYIY =
getESShape(phoESHitsIYIY);
274 return sqrt(phoESShapeIXIX*phoESShapeIXIX + phoESShapeIYIY*phoESShapeIYIY);
280 if (!(fabs(cluster.
eta()) > 1.6 && fabs(cluster.
eta()) < 3.))
return 0.;
285 float phoESShapeIXIX =
getESShape(phoESHitsIXIX);
287 return phoESShapeIXIX;
293 if (!(fabs(cluster.
eta()) > 1.6 && fabs(cluster.
eta()) < 3.))
return 0.;
298 float phoESShapeIYIY =
getESShape(phoESHitsIYIY);
300 return phoESShapeIYIY;
306 std::map<DetId, EcalRecHit> rechits_map = _rechits_map;
307 std::vector<float> esHits;
317 std::map<DetId, EcalRecHit>::iterator it;
326 if (plane==1 && strip !=
ESDetId(0)) strip = theESNav.
north();
327 if (plane==2 && strip !=
ESDetId(0)) strip = theESNav.
east();
328 }
else if (row == -1) {
329 if (plane==1 && strip !=
ESDetId(0)) strip = theESNav.
south();
330 if (plane==2 && strip !=
ESDetId(0)) strip = theESNav.
west();
335 for (
int i=0;
i<31; ++
i) esHits.push_back(0);
337 it = rechits_map.find(strip);
338 if (it != rechits_map.end() && it->second.energy() > 1.0e-10) esHits.push_back(it->second.energy());
339 else esHits.push_back(0);
345 for (
int i=0;
i<15; ++
i) {
346 next = theESNav.
east();
348 it = rechits_map.find(next);
349 if (it != rechits_map.end() && it->second.energy() > 1.0e-10) esHits.push_back(it->second.energy());
350 else esHits.push_back(0);
353 for (
int j=
i;
j<15;
j++) esHits.push_back(0);
362 for (
int i=0;
i<15; ++
i) {
363 next = theESNav.
west();
365 it = rechits_map.find(next);
366 if (it != rechits_map.end() && it->second.energy() > 1.0e-10) esHits.push_back(it->second.energy());
367 else esHits.push_back(0);
370 for (
int j=
i;
j<15;
j++) esHits.push_back(0);
380 for (
int i=0;
i<15; ++
i) {
381 next = theESNav.
north();
383 it = rechits_map.find(next);
384 if (it != rechits_map.end() && it->second.energy() > 1.0e-10) esHits.push_back(it->second.energy());
385 else esHits.push_back(0);
388 for (
int j=
i;
j<15;
j++) esHits.push_back(0);
397 for (
int i=0;
i<15; ++
i) {
398 next = theESNav.
south();
400 it = rechits_map.find(next);
401 if (it != rechits_map.end() && it->second.energy() > 1.0e-10) esHits.push_back(it->second.energy());
402 else esHits.push_back(0);
405 for (
int j=
i;
j<15;
j++) esHits.push_back(0);
426 for(
int ibin=0; ibin<((nBIN+1)/2); ibin++) {
428 esRH[(nBIN-1)/2] = ESHits0[ibin];
430 esRH[(nBIN-1)/2+ibin] = ESHits0[ibin];
431 esRH[(nBIN-1)/2-ibin] = ESHits0[ibin+15];
436 double EffWidthSigmaISIS = 0.;
437 double totalEnergyISIS = 0.;
438 double EffStatsISIS = 0.;
439 for (
int id_X=0; id_X<21; id_X++) {
440 totalEnergyISIS += esRH[id_X];
441 EffStatsISIS += esRH[id_X]*(id_X-10)*(id_X-10);
443 EffWidthSigmaISIS = (totalEnergyISIS>0.) ?
sqrt(fabs(EffStatsISIS / totalEnergyISIS)) : 0.;
445 return EffWidthSigmaISIS;
int adc(sample_type sample)
get the ADC sample (12 bits)
const double Z[kNumberCalorimeter]
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
bool getByToken(EDGetToken token, Handle< PROD > &result) const
std::vector< EcalRecHit >::const_iterator const_iterator
double z() const
z coordinate of cluster centroid
double eta() const
pseudorapidity of cluster centroid
void setHome(const T &startingPoint)
set the starting position
T west() const
move the navigator west
double x() const
x coordinate of cluster centroid
T south() const
move the navigator south
T east() const
move the navigator east
void home() const
move the navigator back to the starting point
T const * product() const
tuple idx
DEBUGGING if hasattr(process,"trackMonIterativeTracking2012"): print "trackMonIterativeTracking2012 D...
std::vector< Item >::const_iterator const_iterator
T const * product() const
ESHandle< TrackerGeometry > geometry
iterator find(key_type k)
const_iterator find(uint32_t rawId) const
T north() const
move the navigator north
const_iterator end() const
const CaloClusterPtr & seed() const
seed BasicCluster
double y() const
y coordinate of cluster centroid
edm::Timestamp time() const
*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 EcalIntercalibConstant