Changeset 4418 for trunk/MagicSoft/Mars/mtemp/mifae/library/MIslands.h
- Timestamp:
- 07/22/04 19:30:31 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mtemp/mifae/library/MIslands.h
r4218 r4418 25 25 Float_t fTime[20][577]; // mean of the arrival time 26 26 Float_t fTimeSpread[20]; // mean arrival time spread of the island 27 Float_t fMeanX[20]; // mean X position of the island 28 Float_t fMeanY[20]; // mean Y position of the island 29 Float_t fDist[20]; // dist between islands and continent(larger island) 27 30 28 31 public: … … 37 40 Float_t GetSigToNoise(Int_t isl) { return fSigToNoise[isl]; } 38 41 Float_t GetArrivalTime(Int_t isl, Int_t idx) { return fTime[isl][idx]; } 39 Float_t GetTimeSpread(Int_t isl) { return fTimeSpread[isl];} 42 Float_t GetTimeSpread(Int_t isl) { return fTimeSpread[isl];} 43 Float_t GetMeanX(Int_t isl) { return fMeanX[isl];} 44 Float_t GetMeanY(Int_t isl) { return fMeanY[isl];} 45 Float_t GetDist(Int_t isl) { return fDist[isl]; } 40 46 41 47 void SetIslNum(Int_t nisl) { fIslNum = nisl; } … … 46 52 47 53 void SetTimeSpread(Int_t isl, Float_t val) { fTimeSpread[isl] = val; } 48 54 void SetMeanX(Int_t isl, Float_t val) { fMeanX[isl]=val; } 55 void SetMeanY(Int_t isl, Float_t val) { fMeanY[isl]=val; } 56 void SetDist(Int_t isl, Float_t val) { fDist[isl]=val; } 57 58 49 59 ClassDef(MIslands, 1) // Storage Container for Island Parameters 50 60 };
Note:
See TracChangeset
for help on using the changeset viewer.