/**\class PesConstants Holds the constants for a single plug shower max strip \author Benn Tannenbaum benn@physics.ucla.edu \date 14 September 2000 This class holds the constants for a single PES. These constants are used by PesCorrections to convert PESD banks to PlugStrips, done in the PesDtoEModule. The description of these constants is in PesCorrections. 17 Sep. 2001 added theStatus which holds strip status from dead strip DB. -A.A. */ #ifndef PesConstants_hh #define PesConstants_hh class PesConstants { public: PesConstants(){}; ~PesConstants(){}; float theGain; float theSourceMean; float theSourceRMS; float theLaserMean; float theLaserRMS; float theLinearity[3]; float thePedestal; float theAttenuation[3]; float theLaserNorm; float theSourceNorm; int theHighVoltage; int theStatus; friend std::ostream& operator<<(std::ostream& os, const PesConstants& theConsts); }; #endif