Changeset 3188 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
02/16/04 13:47:09 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3187 r3188  
    44
    55                                                 -*-*- END OF LINE -*-*-
     6 2004/02/16: Markus Gaug
     7
     8   * manalysis/MPedestalCam.h
     9     - changed type of fTotalEntries from ULong_t to UInt_t
     10     - fixed documentation of fTotalEntries
     11
     12
    613 2004/02/16: Thomas Bretz
    714
  • trunk/MagicSoft/Mars/macros/pedphotcalc.C

    r2836 r3188  
    124124  MCalibrationCalc     calcalc;
    125125 
     126  //
     127  // Apply a filter against cosmics
     128  // (was directly in MCalibrationCalc in earlier versions)
     129  //
     130  MFCosmics            cosmics;
     131  MContinue            cont(&cosmics);
     132
    126133  //
    127134  // As long as we don't have digital modules,
     
    133140  tlist2.AddToList(&geomapl);
    134141  tlist2.AddToList(&sigcalc);
     142  //
     143  // In case, you want to skip the cosmics rejection,
     144  // uncomment the next line
     145  //
     146  tlist2.AddToList(&cont);
     147  //
    135148  tlist2.AddToList(&calcalc);
    136149 
  • trunk/MagicSoft/Mars/manalysis/MPedestalCam.h

    r3172 r3188  
    1919  TClonesArray *fArray;  // FIXME: Change TClonesArray away from a pointer?
    2020 
    21   ULong_t fTotalEntries;
     21  UInt_t fTotalEntries;
    2222 
    2323public:
     
    3333
    3434  // Setters
    35   void SetTotalEntries(const ULong_t n)    { fTotalEntries = n; }
     35  void SetTotalEntries(const UInt_t n)    { fTotalEntries = n; }
    3636
    3737  // Getters
    38   Int_t  GetSize()                          const;
    39   ULong_t GetTotalEntries()                  const { return fTotalEntries; }
     38  UInt_t GetSize()                          const;
     39  UInt_t GetTotalEntries()                  const { return fTotalEntries; }
    4040
    4141  Float_t GetPedestalMin(const MGeomCam *cam) const;
Note: See TracChangeset for help on using the changeset viewer.