Ignore:
Timestamp:
02/10/09 20:00:10 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcorsika
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcorsika/MCorsikaRunHeader.cc

    r9308 r9312  
    3333// ----------------
    3434//  + UInt_t fParticleID
     35//  + Float_t fImpactMax
    3536//
    3637////////////////////////////////////////////////////////////////////////////
     
    148149    fParticleID = TMath::Nint(g[1]);
    149150
    150     //fImpactMax = g[86];
     151    fImpactMax = g[86];
    151152
    152153    fZdMin = g[79];                // lower edge of theta in °
  • trunk/MagicSoft/Mars/mcorsika/MCorsikaRunHeader.h

    r9308 r9312  
    1616
    1717private:
    18     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
     18    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
    2323
    24     Byte_t    fNumObsLevel;       // Number of observation levels
    25     Float_t   fObsLevel[10];      // Observation levels [cm]
     24    Byte_t   fNumObsLevel;            // Number of observation levels
     25    Float_t  fObsLevel[10];           // Observation levels [cm]
    2626
    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
    3028
    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
    3532
    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)
    3837
    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
    4040
    4141    Float_t fViewConeInnerAngle;      // [deg]
     
    4848    Bool_t HasViewCone() const { return fViewConeOuterAngle>0; }
    4949
     50    UInt_t GetParticleID() const { return fParticleID; }
     51
    5052    Float_t GetZdMin() const { return fZdMin; }
    5153    Float_t GetZdMax() const { return fZdMax; }
     
    5759    Float_t GetWavelengthMax() const { return fWavelengthMax; }
    5860
    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; }
    6064
    61     //Float_t GetImpactMax() const { return fImpactMax; }
     65    Float_t GetImpactMax() const { return fImpactMax; }
    6266
    6367    Float_t GetViewConeOuterAngle() const { return fViewConeOuterAngle; }
Note: See TracChangeset for help on using the changeset viewer.