CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalUncalibRecHitWorkerWeights.cc
Go to the documentation of this file.
2 
6 
11 
14 {
15 }
16 
17 void
19 {
20  es.get<EcalGainRatiosRcd>().get(gains);
21  es.get<EcalPedestalsRcd>().get(peds);
22  es.get<EcalWeightXtalGroupsRcd>().get(grps);
23  es.get<EcalTBWeightsRcd>().get(wgts);
24 }
25 
26 
27 bool
31 {
32  DetId detid(itdg->id());
33 
34  const EcalPedestals::Item * aped = 0;
35  const EcalMGPAGainRatio * aGain = 0;
36  const EcalXtalGroupId * gid = 0;
37  EcalTBWeights::EcalTDCId tdcid(1);
38 
39  if (detid.subdetId()==EcalEndcap) {
40  unsigned int hashedIndex = EEDetId(detid).hashedIndex();
41  aped = &peds->endcap(hashedIndex);
42  aGain = &gains->endcap(hashedIndex);
43  gid = &grps->endcap(hashedIndex);
44  } else {
45  unsigned int hashedIndex = EBDetId(detid).hashedIndex();
46  aped = &peds->barrel(hashedIndex);
47  aGain = &gains->barrel(hashedIndex);
48  gid = &grps->barrel(hashedIndex);
49  }
50 
51  pedVec[0] = aped->mean_x12;
52  pedVec[1] = aped->mean_x6;
53  pedVec[2] = aped->mean_x1;
54  pedRMSVec[0] = aped->rms_x12;
55  pedRMSVec[1] = aped->rms_x6;
56  pedRMSVec[2] = aped->rms_x1;
57  gainRatios[0] = 1.;
58  gainRatios[1] = aGain->gain12Over6();
59  gainRatios[2] = aGain->gain6Over1()*aGain->gain12Over6();
60 
61  // now lookup the correct weights in the map
62  EcalTBWeights::EcalTBWeightMap const & wgtsMap = wgts->getMap();
63  EcalTBWeights::EcalTBWeightMap::const_iterator wit;
64  wit = wgtsMap.find( std::make_pair(*gid,tdcid) );
65  if( wit == wgtsMap.end() ) {
66  edm::LogError("EcalUncalibRecHitError") << "No weights found for EcalGroupId: "
67  << gid->id() << " and EcalTDCId: " << tdcid
68  << "\n skipping digi with id: " << detid.rawId();
69 
70  return false;
71  }
72  const EcalWeightSet& wset = wit->second; // this is the EcalWeightSet
73 
76 // const EcalWeightSet::EcalChi2WeightMatrix& mat3 = wset.getChi2WeightsBeforeGainSwitch();
77 // const EcalWeightSet::EcalChi2WeightMatrix& mat4 = wset.getChi2WeightsAfterGainSwitch();
78 
79  weights[0] = &mat1;
80  weights[1] = &mat2;
81 
82 // chi2mat[0] = &mat3;
83 // chi2mat[1] = &mat4;
84 /*
85  if (detid.subdetId()==EcalEndcap) {
86  result.push_back(uncalibMaker_endcap_.makeRecHit(*itdg, pedVec, gainRatios, weights, chi2mat));
87  } else {
88  result.push_back(uncalibMaker_barrel_.makeRecHit(*itdg, pedVec, gainRatios, weights, chi2mat));
89  }
90 */
91  if (detid.subdetId()==EcalEndcap) {
93  } else {
95  }
96  return true;
97 }
98 
std::map< std::pair< EcalXtalGroupId, EcalTDCId >, EcalWeightSet > EcalTBWeightMap
Definition: EcalTBWeights.h:19
int hashedIndex() const
get a compact index for arrays
Definition: EBDetId.h:73
boost::transform_iterator< IterHelp, boost::counting_iterator< int > > const_iterator
edm::ESHandle< EcalGainRatios > gains
EcalUncalibRecHitRecWeightsAlgo< EEDataFrame > uncalibMaker_endcap_
void push_back(T const &t)
const EcalWeightSet::EcalWeightMatrix * weights[2]
const unsigned int id() const
int hashedIndex(int ieta, int iphi)
Definition: EcalPyUtils.cc:42
tuple result
Definition: query.py:137
virtual EcalUncalibratedRecHit makeRecHit(const C &dataFrame, const double *pedestals, const double *pedestalsRMS, const double *gainRatios, const EcalWeightSet::EcalWeightMatrix **weights, const EcalShapeBase &testbeamPulseShape)
Compute parameters.
float gain6Over1() const
EcalWeightMatrix & getWeightsAfterGainSwitch()
Definition: EcalWeightSet.h:28
EcalUncalibRecHitWorkerWeights(const edm::ParameterSet &)
Definition: DetId.h:20
bool run(const edm::Event &evt, const EcalDigiCollection::const_iterator &digi, EcalUncalibratedRecHitCollection &result)
edm::ESHandle< EcalWeightXtalGroups > grps
int hashedIndex() const
Definition: EEDetId.h:177
EcalWeightMatrix & getWeightsBeforeGainSwitch()
Definition: EcalWeightSet.h:27
const T & get() const
Definition: EventSetup.h:55
float gain12Over6() const
math::Matrix< 3, 10 >::type EcalWeightMatrix
Definition: EcalWeightSet.h:20
#define DEFINE_EDM_PLUGIN(factory, type, name)
EcalUncalibRecHitRecWeightsAlgo< EBDataFrame > uncalibMaker_barrel_