CMS 3D CMS Logo

EcalRecHitSimpleAlgo.h
Go to the documentation of this file.
1 #ifndef RecoLocalCalo_EcalRecAlgos_EcalRecHitSimpleAlgo_HH
2 #define RecoLocalCalo_EcalRecAlgos_EcalRecHitSimpleAlgo_HH
3 
12 #include "TMath.h"
13 #include <iostream>
14 
16  public:
17  // default ctor
19  adcToGeVConstant_ = -1;
20  adcToGeVConstantIsSet_ = false;
21  }
22 
23  void setADCToGeVConstant(const float& value) override {
26  }
27 
28 
29  // destructor
30  ~EcalRecHitSimpleAlgo() override { };
31 
34  const float& intercalibConstant,
35  const float& timeIntercalib = 0,
36  const uint32_t& flags = 0) const override {
37 
39  std::cout << "EcalRecHitSimpleAlgo::makeRecHit: adcToGeVConstant_ not set before calling this method!" <<
40  " will use -1 and produce bogus rechits!" << std::endl;
41  }
42 
43  float clockToNsConstant = 25;
44  float energy = uncalibRH.amplitude()*adcToGeVConstant_*intercalibConstant;
45  float time = uncalibRH.jitter() * clockToNsConstant + timeIntercalib;
46 
47  EcalRecHit rh( uncalibRH.id(), energy, time );
48  rh.setChi2( uncalibRH.chi2() );
49  rh.setEnergyError( uncalibRH.amplitudeError()*adcToGeVConstant_*intercalibConstant);
50  /* rh.setOutOfTimeEnergy( uncalibRH.outOfTimeEnergy() * adcToGeVConstant_ * intercalibConstant ); */
51  /* rh.setOutOfTimeChi2( uncalibRH.outOfTimeChi2() ); */
52  rh.setTimeError(uncalibRH.jitterErrorBits());
53 
54  // Now fill flags
55 
56  bool good=true;
57 
60  good=false;
61  }
63  // leading edge recovery failed - still keep the information
64  // about the saturation and do not flag as dead
65  rh.setFlag(EcalRecHit::kSaturated);
66  good=false;
67  }
68  if( uncalibRH.isSaturated() ) {
69  rh.setFlag(EcalRecHit::kSaturated);
70  good=false;
71  }
73  rh.setFlag(EcalRecHit::kOutOfTime) ;
74  good=false;
75  }
77  rh.setFlag(EcalRecHit::kPoorReco);
78  good=false;
79  }
82  }
85  }
86 
87  if (good) rh.setFlag(EcalRecHit::kGood);
88  return rh;
89  }
90 
91 private:
94 
95 };
96 #endif
std::vector< Variable::Flags > flags
Definition: MVATrainer.cc:135
EcalRecHit makeRecHit(const EcalUncalibratedRecHit &uncalibRH, const float &intercalibConstant, const float &timeIntercalib=0, const uint32_t &flags=0) const override
Compute parameters.
Definition: value.py:1
void setADCToGeVConstant(const float &value) override
make rechits from dataframes
bool checkFlag(Flags flag) const
void setChi2(float chi2)
Definition: EcalRecHit.h:125