Changeset 5410 for trunk/MagicSoft/include-Classes/MMcFormat
- Timestamp:
- 11/16/04 12:12:51 (20 years ago)
- Location:
- trunk/MagicSoft/include-Classes/MMcFormat
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx
r5321 r5410 7 7 8 8 #include "MFadcDefine.h" 9 10 // 11 // Version 5: 12 // Added member fGainFluctuations 13 // 14 // Version 6: 15 // Added member fNoiseGainFluctuations 16 // 9 17 10 18 class MMcFadcHeader : public MParContainer{ … … 53 61 54 62 Bool_t fGainFluctuations; 55 // kTRUE if PMT gain fluctuations were simulated (=> default in camera simulation) 63 // kTRUE if PMT gain fluctuations were simulated for the signal 64 // (=> default in camera simulation) 65 66 Bool_t fNoiseGainFluctuations; 67 // kTRUE if PMT gain fluctuations were simulated for the NSB noise 68 // (=> default in StarResponse program) 56 69 57 70 … … 105 118 106 119 void SetGainFluctuations(Bool_t x) { fGainFluctuations = x; } 120 void SetNoiseGainFluctuations(Bool_t x) { fNoiseGainFluctuations = x; } 107 121 108 122 Float_t GetPedestal(UInt_t i) const { return fPedesMean[i]; } … … 117 131 UInt_t GetNumPixel() const { return MFADC_CHANNELS; } 118 132 119 ClassDef(MMcFadcHeader, 5) //Stores Montecarlo Information describing the FADC behaviour133 ClassDef(MMcFadcHeader, 6) //Stores Montecarlo Information describing the FADC behaviour 120 134 121 135 }; -
trunk/MagicSoft/include-Classes/MMcFormat/MMcTrigHeader.hxx
r2395 r5410 8 8 #include "MTriggerDefine.h" 9 9 #include "Mdefine.h" 10 11 // 12 // Version 4 13 // Added data members fGainFluctuations and fNoiseGainFluctuations 14 // 10 15 11 16 class MMcTrigHeader : public MParContainer{ … … 31 36 // the amplitude of the single phe response 32 37 // for the trigger 38 39 Bool_t fGainFluctuations; 40 // kTRUE if PMT gain fluctuations were simulated for the signal 41 // (=> default in camera simulation) 42 43 Bool_t fNoiseGainFluctuations; 44 // kTRUE if PMT gain fluctuations were simulated for the NSB noise 45 // (=> default in StarResponse program) 46 33 47 34 48 public: … … 90 104 } 91 105 92 106 void SetGainFluctuations(Bool_t x) { fGainFluctuations = x; } 107 void SetNoiseGainFluctuations(Bool_t x) { fNoiseGainFluctuations = x; } 93 108 94 109 Short_t GetMultiplicity() { return fMultiplicity; } … … 111 126 112 127 113 ClassDef(MMcTrigHeader, 3) //Stores Montecarlo Information which describes the used trigger128 ClassDef(MMcTrigHeader, 4) //Stores Montecarlo Information which describes the used trigger 114 129 115 130 }; 116 131 117 132 #endif 118
Note:
See TracChangeset
for help on using the changeset viewer.