Ignore:
Timestamp:
07/22/04 19:30:31 (20 years ago)
Author:
aliu
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mtemp/mifae/library/MIslands.h

    r4218 r4418  
    2525    Float_t fTime[20][577];        //  mean of the arrival time 
    2626    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)
    2730
    2831public:
     
    3740    Float_t  GetSigToNoise(Int_t isl)                 { return fSigToNoise[isl]; }
    3841    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]; }
    4046
    4147    void     SetIslNum(Int_t nisl)                    { fIslNum = nisl; }
     
    4652
    4753    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
    4959    ClassDef(MIslands, 1) // Storage Container for Island Parameters
    5060};
Note: See TracChangeset for help on using the changeset viewer.