Changeset 9595 for trunk/MagicSoft/include-Classes/MMcFormat
- Timestamp:
- 06/24/10 15:05:04 (15 years ago)
- Location:
- trunk/MagicSoft/include-Classes/MMcFormat
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/include-Classes/MMcFormat/MMcCorsikaRunHeader.h
r9312 r9595 101 101 Float_t GetViewconeAngleOuter() const { return fViewconeAngles[1]; } 102 102 Float_t GetAtmosphericModel() const { return fAtmosphericModel; } 103 Bool_t HasViewCone() const { return fViewconeAngles[1]>0; } 103 104 104 105 Int_t GetNumCT() const { return fNumCT; } … … 113 114 fSlopeSpec=slope; fELowLim=emin; fEUppLim=emax; 114 115 } 116 void SetViewCone(Float_t inner, Float_t outer) 117 { 118 fViewconeAngles[0] = inner; 119 fViewconeAngles[1] = outer; 120 } 121 115 122 116 123 MGeomCorsikaCT &operator[](Int_t i) const; -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.hxx
r9312 r9595 14 14 Float_t fFirstTarget; // [] 15 15 Float_t fZFirstInteraction; // [cm] 16 17 Float_t fTheta; // [rad] Theta angle of event18 Float_t fPhi; // [rad] Phi angle of event (see class description)19 16 20 17 Float_t fCoreD; // [cm] Core d pos … … 72 69 // Getter 73 70 UInt_t GetEvtNumber() const { return fEvtNumber; } //Get Event Number 74 Float_t GetTheta() const { return fTheta; } //Get Theta angle75 Float_t GetPhi() const { return fPhi ; } //Get Phi angle76 71 77 72 Float_t GetCoreX() const { return fCoreX; } //Get Core x pos … … 103 98 104 99 // Setter 105 void SetTheta(Float_t Theta) { fTheta=Theta; } //Set Theta angle106 void SetPhi(Float_t Phi) { fPhi=Phi; } //Set Phi angle107 100 void SetCoreD(Float_t CoreD) { fCoreD=CoreD; } //Set Core d pos 108 101 void SetCoreX(Float_t CoreX) { fCoreX=CoreX; } //Set Core x pos … … 123 116 void Clear(Option_t *opt=NULL); 124 117 125 ClassDef(MMcEvt, 6) //Stores Montecarlo Information of one event (eg. the energy)118 ClassDef(MMcEvt, 7) //Stores Montecarlo Information of one event (eg. the energy) 126 119 }; 127 120 -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvtBasic.h
r9313 r9595 36 36 Float_t fTelescopePhi; // [rad] 37 37 Float_t fTelescopeTheta; // [rad] 38 38 39 Float_t fTheta; // [rad] Theta angle of event 40 Float_t fPhi; // [rad] Phi angle of event (see class description) 41 39 42 public: 40 43 MMcEvtBasic(); … … 50 53 Float_t GetTelescopePhi() const { return fTelescopePhi; } 51 54 Float_t GetTelescopeTheta() const { return fTelescopeTheta; } 55 56 Float_t GetParticlePhi() const { return fPhi; } 57 Float_t GetParticleTheta() const { return fTheta; } 58 59 //Float_t GetTheta() const { return fTheta; } 60 //Float_t GetPhi() const { return fPhi ; } 52 61 53 62 static TString GetParticleName(Int_t id); … … 78 87 void SetTelescopePhi (Float_t Phi) { fTelescopePhi=Phi; } 79 88 89 void SetParticleTheta(Float_t Theta) { fTheta=Theta; } 90 void SetParticlePhi (Float_t Phi) { fPhi=Phi; } 91 92 //void SetTheta(Float_t Theta) { fTheta=Theta; } //Set Theta angle 93 //void SetPhi(Float_t Phi) { fPhi=Phi; } //Set Phi angle 94 80 95 void Fill(ParticleId_t, Float_t, Float_t, Float_t, Float_t); 81 96 … … 84 99 void Print(Option_t *opt=NULL) const; 85 100 86 ClassDef(MMcEvtBasic, 2) //Stores Basic Montecarlo Information of one event101 ClassDef(MMcEvtBasic, 3) //Stores Basic Montecarlo Information of one event 87 102 88 103 };
Note:
See TracChangeset
for help on using the changeset viewer.