Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:42

0001 #ifndef CSCDigitizer_CSCStripAmpResponse_h
0002 #define CSCDigitizer_CSCStripAmpResponse_h
0003 
0004 class CSCStripAmpResponse {
0005 public:
0006   enum tailShapes { NONE, CONSERVATIVE, RADICAL };
0007 
0008   CSCStripAmpResponse(int shapingTime, int tailShaping);
0009 
0010   float calculateAmpResponse(float t) const;
0011 
0012 private:
0013   int theShapingTime;
0014   int theTailShaping;
0015 };
0016 
0017 #endif