Ignore:
Timestamp:
11/11/04 09:55:25 (20 years ago)
Author:
aliu
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r5170 r5379  
    2222  Float_t fSigToNoise;
    2323  Float_t fTimeSpread;
    24   Float_t fMeanX;
    25   Float_t fMeanY;
    26   Float_t fWidth;
    27   Float_t fLength;
    2824  Float_t fDist;
    2925  Float_t fDistL;
    3026  Float_t fDistW;
    3127  Float_t fDistS;
     28 
     29  Float_t fWidth;
     30  Float_t fLength;
     31  Float_t fSizeIsl;
     32  Float_t fMeanX;
     33  Float_t fMeanY;
     34 
     35  Float_t fAlpha;
     36
    3237
    3338  TArrayI fPixList;
     
    4247  Float_t GetSigToNoise()  { return fSigToNoise; }
    4348  Float_t GetTimeSpread()  { return fTimeSpread; }
     49  Float_t GetDist()        { return fDist; } 
     50  Float_t GetDistL()       { return fDistL; }
     51  Float_t GetDistW()       { return fDistW; }
     52  Float_t GetDistS()       { return fDistS; }
     53
     54  //hillas parameters
     55  Float_t GetSizeIsl()     { return fSizeIsl; }
    4456  Float_t GetMeanX()       { return fMeanX; }
    4557  Float_t GetMeanY()       { return fMeanY; }
    4658  Float_t GetWidth()       { return fWidth; }
    4759  Float_t GetLength()      { return fLength; }
    48   Float_t GetDist()        { return fDist; }
    49   Float_t GetDistL()       { return fDistL; }
    50   Float_t GetDistW()       { return fDistW; }
    51   Float_t GetDistS()       { return fDistS; }
    5260
     61  // hillas src parameters
     62  Float_t GetAlpha()       { return fAlpha; }
     63 
    5364  void    InitSize(Int_t i);
    5465  UInt_t  GetSize() const { return fPixList.GetSize(); }
     
    5970  void Reset();
    6071
    61   void SetPixNum    (Int_t   i)   { fPixNum = i;}
    62   void SetSigToNoise(Float_t val) { fSigToNoise = val;}
    63   void SetTimeSpread(Float_t val) { fTimeSpread = val;}
    64   void SetMeanX     (Float_t val) { fMeanX = val;}
    65   void SetMeanY     (Float_t val) { fMeanY = val;}
    66   void SetDist      (Float_t val) { fDist = val;}
    67   void SetWidth     (Float_t val) { fWidth = val;}
    68   void SetLength    (Float_t val) { fLength = val;}
    69   void SetDistL     (Float_t val) { fDistL = val;}
    70   void SetDistW     (Float_t val) { fDistW = val;}
    71   void SetDistS     (Float_t val) { fDistS = val;}
     72  void SetPixNum    (Int_t   i)   { fPixNum = i; }
     73  void SetSigToNoise(Float_t val) { fSigToNoise = val; }
     74  void SetTimeSpread(Float_t val) { fTimeSpread = val; }
     75  void SetDist      (Float_t val) { fDist = val; }
     76  void SetDistL     (Float_t val) { fDistL = val; }
     77  void SetDistW     (Float_t val) { fDistW = val; }
     78  void SetDistS     (Float_t val) { fDistS = val; }
     79
     80  //hillas parameters
     81  void SetSizeIsl   (Float_t val) { fSizeIsl = val; }
     82  void SetMeanX     (Float_t val) { fMeanX = val; }
     83  void SetMeanY     (Float_t val) { fMeanY = val; }
     84  void SetWidth     (Float_t val) { fWidth = val; }
     85  void SetLength    (Float_t val) { fLength = val; }
     86 
     87  // hillas src parameters
     88  void SetAlpha     (Float_t val) { fAlpha = val; }
    7289 
    73   void SetPixList( const Int_t i,const Int_t id);
    74   void SetPeakPulse( const Int_t i,const Float_t time);
     90  void SetPixList( const Int_t i, const Int_t id);
     91  void SetPeakPulse( const Int_t i, const Float_t time);
    7592
    7693  //  void Paint(Option_t *opt=NULL);
    7794  void Print(Option_t *opt=NULL) const; 
    7895
    79   ClassDef(MImgIsland, 1) // Container that holds the island information
     96  ClassDef(MImgIsland, 2) // Container that holds the island information
    8097
    8198};
Note: See TracChangeset for help on using the changeset viewer.