- Timestamp:
- 10/12/04 14:43:18 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Simulation/Detector/include-MLons/MLons.hxx
r5103 r5248 33 33 // 34 34 35 class MLons { 35 class MLons 36 { 36 37 37 38 private: 38 39 39 Char_t path[256] ;// Location of StarLight files40 Char_t path[256]; // Location of StarLight files 40 41 41 MStarLight MSLStored ; // MStarLight in memmory42 MStarLight *MSLStored; // MStarLight in memory 42 43 43 Float_t fTrigShape ;// a number that indicate the shape type of44 45 46 Float_t fAmplTrig ;// the amplitude of the trigger in mV47 Float_t fFwhmTrig ;// the width of the signal in nsec44 Int_t fTrigShape; // a number that indicate the shape type of 45 // the signal 46 // = 0 --> a gaussian 47 Float_t fAmplTrig; // the amplitude of the trigger in mV 48 Float_t fFwhmTrig; // the width of the signal in nsec 48 49 49 Float_t fFadcShape ;// a number that indicate the shape type of50 51 52 Float_t fIntegFadc ;// the integral of the single phe response53 54 Float_t fFwhmFadc ;// the width of the signal in nsec50 Int_t fFadcShape; // a number that indicate the shape type of 51 // the signal 52 // = 0 --> a gaussian 53 Float_t fIntegFadc; // the integral of the single phe response 54 // in the FADC (in FADC counts) 55 Float_t fFwhmFadc; // the width of the signal in nsec 55 56 56 TRandom *RandomNumber; // RandomGenerator 57 Float_t fFadcSlicesPerNanosec; // The sampling frequency (GHz) of the FADC 58 59 TRandom *RandomNumber; // RandomGenerator 57 60 58 61 public: … … 60 63 MLons() ; 61 64 62 MLons(Float_t in_shapeT, Float_t in_amplT, Float_t in_FwhmT, 63 Float_t in_shapeF, Float_t in_integF, Float_t in_FwhmF) ; 65 MLons(Int_t in_shapeT, Float_t in_amplT, Float_t in_FwhmT, 66 Int_t in_shapeF, Float_t in_integF, Float_t in_FwhmF, 67 Float_t in_Fadc_Slices_per_ns); 64 68 65 69 void Reset() ; … … 78 82 Float_t GetIntegFadc() ; 79 83 Float_t GetFwhmFadc() ; 84 Float_t GetFadcSlicesPerNanosec() {return fFadcSlicesPerNanosec;} 80 85 81 86 void GetPath(Char_t *out);
Note:
See TracChangeset
for help on using the changeset viewer.