CMS 3D CMS Logo

SimpleNoiseCalculator.h
Go to the documentation of this file.
1 #ifndef ApvAnalysis_SimpleNoiseCalculator_H
2 #define ApvAnalysis_SimpleNoiseCalculator_H
3 
10 
11 public:
12 
13  // Use the constructor without arguments, since the other will soon
14  // be obsolete.
16  SimpleNoiseCalculator(int evnt_ini, bool useDB);
17  ~SimpleNoiseCalculator() override;
18 
20  ApvAnalysis::PedestalType noise() const override {return theNoise;}
21  float stripNoise(int in) const override {return theNoise[in];}
22  int nevents() const {return numberOfEvents;}
23 
24  void updateStatus() override;
25  void resetNoise() override {theNoise.clear();}
27  void newEvent() override;
28 
30  {return theCMPSubtractedSignal;}
31 
32 protected:
33  void init();
34 
35 protected:
38  std::vector<double> theNoiseSum,theNoiseSqSum;
39  std::vector<unsigned short> theEventPerStrip;
42  bool useDB_;
43 
45  // int eventsRequiredToUpdate_;
46  // float cutToAvoidSignal_;
47 };
48 #endif
ApvAnalysis::PedestalType stripCMPSubtractedSignal() const
std::vector< float > PedestalType
Definition: ApvAnalysis.h:48
void updateNoise(ApvAnalysis::PedestalType &in) override
void setStripNoise(ApvAnalysis::PedestalType &in) override
ApvAnalysis::PedestalType theNoise
std::vector< double > theNoiseSum
std::vector< double > theNoiseSqSum
ApvAnalysis::PedestalType theCMPSubtractedSignal
ApvAnalysis::PedestalType noise() const override
float stripNoise(int in) const override
std::vector< unsigned short > theEventPerStrip