CMS 3D CMS Logo

CSCConfigurableStripConditions.h
Go to the documentation of this file.
1 #ifndef CSCDigitizer_CSCConfigurableStripConditions_h
2 #define CSCDigitizer_CSCConfigurableStripConditions_h
3 
7 
9 public:
12 
14  float gain(const CSCDetId &detId, int channel) const override;
15  float gainSigma(const CSCDetId &detId, int channel) const override { return theGainSigma; }
16 
18  float pedestal(const CSCDetId &detId, int channel) const override { return thePedestal; }
19  float pedestalSigma(const CSCDetId &detId, int channel) const override { return thePedestalSigma; }
20 
21  void crosstalk(const CSCDetId &detId,
22  int channel,
23  double stripLength,
24  bool leftRight,
25  float &capacitive,
26  float &resistive) const override;
27 
28 private:
29  void fetchNoisifier(const CSCDetId &detId, int istrip) override;
30  void makeNoisifier(int chamberType, const std::vector<double> &correlations);
31  std::vector<CSCCorrelatedNoisifier *> theNoisifiers;
32 
33  float theGain;
34  float theME11Gain;
35  float theGainSigma;
36  float thePedestal;
38  // proportional to slope of neighboring signal, per cm of strip length
40  // proportional to neighboring signal
42 };
43 
44 #endif
float pedestal(const CSCDetId &detId, int channel) const override
in ADC counts
void fetchNoisifier(const CSCDetId &detId, int istrip) override
float gainSigma(const CSCDetId &detId, int channel) const override
float gain(const CSCDetId &detId, int channel) const override
channels count from 1
CSCConfigurableStripConditions(const edm::ParameterSet &p)
void makeNoisifier(int chamberType, const std::vector< double > &correlations)
void crosstalk(const CSCDetId &detId, int channel, double stripLength, bool leftRight, float &capacitive, float &resistive) const override
float pedestalSigma(const CSCDetId &detId, int channel) const override
std::vector< CSCCorrelatedNoisifier * > theNoisifiers