Changeset 9312 for trunk/MagicSoft/Mars/mcorsika
- Timestamp:
- 02/10/09 20:00:10 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mcorsika
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcorsika/MCorsikaRunHeader.cc
r9308 r9312 33 33 // ---------------- 34 34 // + UInt_t fParticleID 35 // + Float_t fImpactMax 35 36 // 36 37 //////////////////////////////////////////////////////////////////////////// … … 148 149 fParticleID = TMath::Nint(g[1]); 149 150 150 //fImpactMax = g[86];151 fImpactMax = g[86]; 151 152 152 153 fZdMin = g[79]; // lower edge of theta in ° -
trunk/MagicSoft/Mars/mcorsika/MCorsikaRunHeader.h
r9308 r9312 16 16 17 17 private: 18 UInt_t fRunNumber;// Run number19 UInt_t fParticleID;// Particle ID (see MMcEvtBasic or CORSIKA manual)20 UInt_t fNumEvents;// Number of events21 MTime fRunStart;// Date of begin (yymmdd)22 Float_t fProgramVersion;// Version of program18 UInt_t fRunNumber; // Run number 19 UInt_t fParticleID; // Particle ID (see MMcEvtBasic or CORSIKA manual) 20 UInt_t fNumEvents; // Number of events 21 MTime fRunStart; // Date of begin (yymmdd) 22 Float_t fProgramVersion; // Version of program 23 23 24 Byte_t fNumObsLevel;// Number of observation levels25 Float_t fObsLevel[10];// Observation levels [cm]24 Byte_t fNumObsLevel; // Number of observation levels 25 Float_t fObsLevel[10]; // Observation levels [cm] 26 26 27 Float_t fSlopeSpectrum; // Slope of energy spectrum 28 Float_t fEnergyMin; // Lower limit of energy range 29 Float_t fEnergyMax; // Upper limit of energy range 27 Float_t fImpactMax; // [cm] Maximum simulated impact 30 28 31 Float_t fZdMin; // [rad] Zenith distance 32 Float_t fZdMax; // [rad] Zenith distance 33 Float_t fAzMin; // [rad] Azimuth (north=0; west=90) 34 Float_t fAzMax; // [rad] Azimuth (north=0; west=90) 29 Float_t fSlopeSpectrum; // Slope of energy spectrum 30 Float_t fEnergyMin; // Lower limit of energy range 31 Float_t fEnergyMax; // Upper limit of energy range 35 32 36 Float_t fWavelengthMin; // [nm] Wavelength bandwidth lo edge 37 Float_t fWavelengthMax; // [nm] Wavelength bandwidth up edge 33 Float_t fZdMin; // [rad] Zenith distance 34 Float_t fZdMax; // [rad] Zenith distance 35 Float_t fAzMin; // [rad] Azimuth (north=0; west=90) 36 Float_t fAzMax; // [rad] Azimuth (north=0; west=90) 38 37 39 //Float_t fImpactMax; // [cm] Maximum simulated impact 38 Float_t fWavelengthMin; // [nm] Wavelength bandwidth lo edge 39 Float_t fWavelengthMax; // [nm] Wavelength bandwidth up edge 40 40 41 41 Float_t fViewConeInnerAngle; // [deg] … … 48 48 Bool_t HasViewCone() const { return fViewConeOuterAngle>0; } 49 49 50 UInt_t GetParticleID() const { return fParticleID; } 51 50 52 Float_t GetZdMin() const { return fZdMin; } 51 53 Float_t GetZdMax() const { return fZdMax; } … … 57 59 Float_t GetWavelengthMax() const { return fWavelengthMax; } 58 60 59 UInt_t GetParticleID() const { return fParticleID; } 61 Float_t GetSlopeSpectrum() const { return fSlopeSpectrum; } 62 Float_t GetEnergyMin() const { return fEnergyMin; } 63 Float_t GetEnergyMax() const { return fEnergyMax; } 60 64 61 //Float_t GetImpactMax() const { return fImpactMax; }65 Float_t GetImpactMax() const { return fImpactMax; } 62 66 63 67 Float_t GetViewConeOuterAngle() const { return fViewConeOuterAngle; }
Note:
See TracChangeset
for help on using the changeset viewer.