Changeset 9312 for trunk/MagicSoft/include-Classes
- Timestamp:
- 02/10/09 20:00:10 (16 years ago)
- Location:
- trunk/MagicSoft/include-Classes/MMcFormat
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/include-Classes/MMcFormat/MMcCorsikaRunHeader.h
r8758 r9312 109 109 Int_t CTnum); 110 110 111 void SetSpectrum(Float_t slope, Float_t emin, Float_t emax) 112 { 113 fSlopeSpec=slope; fELowLim=emin; fEUppLim=emax; 114 } 115 111 116 MGeomCorsikaCT &operator[](Int_t i) const; 112 117 -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx
r8438 r9312 109 109 void SetCoreY(Float_t CoreY) { fCoreY=CoreY; } //Set Core y pos 110 110 111 void SetEvtNumber(UInt_t n) { fEvtNumber=n; } 112 void SetPhotElfromShower(UInt_t n) { fPhotElfromShower=n; } 113 111 114 void Fill( UInt_t, ParticleId_t, Float_t, Float_t, Float_t, 112 115 Float_t, Float_t, Float_t, Float_t, Float_t, Float_t, -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvtBasic.cc
r7094 r9312 89 89 // -------------------------------------------------------------------------- 90 90 // 91 // Copy operator. Copy all data members 92 // 93 void MMcEvtBasic::operator=(const MMcEvtBasic &evt) 94 { 95 fPartId = evt.fPartId; 96 fEnergy = evt.fEnergy; 97 fImpact = evt.fImpact; 98 fTelescopePhi = evt.fTelescopePhi; 99 fTelescopeTheta = evt.fTelescopeTheta; 100 } 101 102 // -------------------------------------------------------------------------- 103 // 91 104 // Reset all values: Fill(kUNDEFINED, -1, -1, 0, 0) 92 105 // -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvtBasic.h
r9272 r9312 5 5 #include "MParContainer.h" 6 6 #endif 7 8 7 9 8 class MMcEvtBasic : public MParContainer … … 41 40 MMcEvtBasic(); 42 41 MMcEvtBasic(ParticleId_t, Float_t, Float_t, Float_t, Float_t); 42 void operator=(const MMcEvtBasic &evt); 43 43 44 44 // Getter -
trunk/MagicSoft/include-Classes/MMcFormat/MMcRunHeader.cxx
r8066 r9312 138 138 fSlopeSpec = 0.0; 139 139 140 fCorsikaVersion = 0; 141 fReflVersion = 0; 142 fCamVersion = 0; 140 fCorsikaVersion = UShort_t(-1); 141 fReflVersion = UShort_t(-1); 142 fCamVersion = UShort_t(-1); 143 143 144 fOpticLinksNoise= 0; 144 145 -
trunk/MagicSoft/include-Classes/MMcFormat/MMcRunHeader.hxx
r7880 r9312 6 6 #endif 7 7 8 // ------------------------------------------------------------- 9 // 10 // The following data member are in use: 11 // 12 // fCorsikaVersion MHCollectionArea 13 // fReflVersion MSrcPosCalc 14 // fCamVersion MMcCalibrationUpdate, MReadMarsFile, 15 // MMcPedestalCopy, MMcPedestalNSBAdd 16 // fStarField* MMcBadPixelSet 17 // fImpactMax MHCollectionArea 18 // fNumSimulatedShowers MHCollectionArea 19 // [fAllEvtsTriggered] MHCollectionArea 20 // fNumPheFromDNSB MMcPedestalNSBAdd 21 // 22 // ------------------------------------------------------------- 8 23 9 24 class MMcRunHeader : public MParContainer … … 146 161 Float_t GetImpactMax() const {return fImpactMax;} 147 162 163 void SetNumSimulatedShowers(UInt_t n) { fNumSimulatedShowers=n; } 164 void SetImpactMax(Float_t im) { fImpactMax=im; } 165 148 166 ClassDef(MMcRunHeader, 7) // storage container for general run info 149 167 };
Note:
See TracChangeset
for help on using the changeset viewer.