CMS 3D CMS Logo

EcalUncalibRecHitWorkerWeights.cc
Go to the documentation of this file.
2 
6 
9 
11 
18  testbeamEEShape(c),
19  testbeamEBShape(c) {}
20 
26 
29 }
30 
34  DetId detid(itdg->id());
35 
36  const EcalPedestals::Item* aped = nullptr;
37  const EcalMGPAGainRatio* aGain = nullptr;
38  const EcalXtalGroupId* gid = nullptr;
39  EcalTBWeights::EcalTDCId tdcid(1);
40 
41  if (detid.subdetId() == EcalEndcap) {
42  unsigned int hashedIndex = EEDetId(detid).hashedIndex();
43  aped = &peds_->endcap(hashedIndex);
44  aGain = &gains_->endcap(hashedIndex);
45  gid = &grps_->endcap(hashedIndex);
46  } else {
47  unsigned int hashedIndex = EBDetId(detid).hashedIndex();
48  aped = &peds_->barrel(hashedIndex);
49  aGain = &gains_->barrel(hashedIndex);
50  gid = &grps_->barrel(hashedIndex);
51  }
52 
53  pedVec[0] = aped->mean_x12;
54  pedVec[1] = aped->mean_x6;
55  pedVec[2] = aped->mean_x1;
56  pedRMSVec[0] = aped->rms_x12;
57  pedRMSVec[1] = aped->rms_x6;
58  pedRMSVec[2] = aped->rms_x1;
59  gainRatios[0] = 1.;
60  gainRatios[1] = aGain->gain12Over6();
61  gainRatios[2] = aGain->gain6Over1() * aGain->gain12Over6();
62 
63  // now lookup the correct weights in the map
64  EcalTBWeights::EcalTBWeightMap const& wgtsMap = wgts_->getMap();
65  EcalTBWeights::EcalTBWeightMap::const_iterator wit;
66  wit = wgtsMap.find(std::make_pair(*gid, tdcid));
67  if (wit == wgtsMap.end()) {
68  edm::LogError("EcalUncalibRecHitError")
69  << "No weights found for EcalGroupId: " << gid->id() << " and EcalTDCId: " << tdcid
70  << "\n skipping digi with id: " << detid.rawId();
71 
72  return false;
73  }
74  const EcalWeightSet& wset = wit->second; // this is the EcalWeightSet
75 
78  // const EcalWeightSet::EcalChi2WeightMatrix& mat3 = wset.getChi2WeightsBeforeGainSwitch();
79  // const EcalWeightSet::EcalChi2WeightMatrix& mat4 = wset.getChi2WeightsAfterGainSwitch();
80 
81  weights[0] = &mat1;
82  weights[1] = &mat2;
83 
84  // chi2mat[0] = &mat3;
85  // chi2mat[1] = &mat4;
86  /*
87  if (detid.subdetId()==EcalEndcap) {
88  result.push_back(uncalibMaker_endcap_.makeRecHit(*itdg, pedVec, gainRatios, weights, chi2mat));
89  } else {
90  result.push_back(uncalibMaker_barrel_.makeRecHit(*itdg, pedVec, gainRatios, weights, chi2mat));
91  }
92 */
93  if (detid.subdetId() == EcalEndcap) {
96  if (((EcalDataFrame)(*itdg)).hasSwitchToGain6())
98  if (((EcalDataFrame)(*itdg)).hasSwitchToGain1())
100  result.emplace_back(rhit);
101  } else {
104  if (((EcalDataFrame)(*itdg)).hasSwitchToGain6())
106  if (((EcalDataFrame)(*itdg)).hasSwitchToGain1())
108  result.emplace_back(rhit);
109  }
110  return true;
111 }
112 
115  return psd;
116 }
117 
124  "EcalUncalibRecHitWorkerWeights");
edm::ESHandle< EcalWeightXtalGroups > grps_
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
const EcalTBWeightMap & getMap() const
Definition: EcalTBWeights.h:28
bool run(const edm::Event &evt, const EcalDigiCollection::const_iterator &digi, EcalUncalibratedRecHitCollection &result) override
std::map< std::pair< EcalXtalGroupId, EcalTDCId >, EcalWeightSet > EcalTBWeightMap
Definition: EcalTBWeights.h:18
EcalUncalibRecHitRecWeightsAlgo< EEDataFrame > uncalibMaker_endcap_
void set(const edm::EventSetup &es) override
edm::ESHandle< EcalTBWeights > wgts_
math::Matrix< 3, 10 >::type EcalWeightMatrix
Definition: EcalWeightSet.h:19
edm::ESGetToken< EcalPedestals, EcalPedestalsRcd > tokenPeds_
Log< level::Error, false > LogError
const EcalWeightSet::EcalWeightMatrix * weights[2]
int hashedIndex(int ieta, int iphi)
Definition: EcalPyUtils.cc:36
edm::ESGetToken< EcalGainRatios, EcalGainRatiosRcd > tokenGains_
virtual EcalUncalibratedRecHit makeRecHit(const C &dataFrame, const double *pedestals, const double *pedestalsRMS, const double *gainRatios, const EcalWeightSet::EcalWeightMatrix **weights, const EcalShapeBase &testbeamPulseShape)
Compute parameters.
unsigned int id() const
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:151
EcalWeightMatrix & getWeightsAfterGainSwitch()
Definition: EcalWeightSet.h:27
edm::ESHandle< EcalPedestals > peds_
float gain12Over6() const
Definition: DetId.h:17
EcalWeightMatrix & getWeightsBeforeGainSwitch()
Definition: EcalWeightSet.h:26
float gain6Over1() const
boost::transform_iterator< IterHelp, boost::counting_iterator< int > > const_iterator
void setEventSetup(const edm::EventSetup &evtSetup)
edm::ESGetToken< EcalTBWeights, EcalTBWeightsRcd > tokenWgts_
int hashedIndex() const
get a compact index for arrays
Definition: EBDetId.h:82
#define DEFINE_EDM_PLUGIN(factory, type, name)
edm::ESGetToken< EcalWeightXtalGroups, EcalWeightXtalGroupsRcd > tokenGrps_
int hashedIndex() const
Definition: EEDetId.h:183
edm::ESHandle< EcalGainRatios > gains_
edm::ParameterSetDescription getAlgoDescription() override