Changeset 9153 for trunk/MagicSoft/Mars/mpedestal
- Timestamp:
- 11/11/08 11:49:49 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mpedestal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpedestal/MHPedestalCor.cc
r8573 r9153 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MHPedestalCor.cc,v 1. 3 2007-06-17 20:50:58tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MHPedestalCor.cc,v 1.4 2008-11-11 11:49:49 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 103 103 // Fill the histograms with data from a MCamEvent-Container. 104 104 // 105 Bool_t MHPedestalCor::Fill(const MParContainer *par, const Stat_t w)105 Int_t MHPedestalCor::Fill(const MParContainer *par, const Stat_t w) 106 106 { 107 107 const MPedestalSubtractedEvt *evt = dynamic_cast<const MPedestalSubtractedEvt*>(par); … … 109 109 { 110 110 *fLog << err << dbginf << "Got no MCamEvent as argument of Fill()..." << endl; 111 return k FALSE;111 return kERROR; 112 112 } 113 113 -
trunk/MagicSoft/Mars/mpedestal/MHPedestalCor.h
r8152 r9153 20 20 TProfile fProf; 21 21 22 Bool_t Fill(const MParContainer *par, const Stat_t w=1);22 Int_t Fill(const MParContainer *par, const Stat_t w=1); 23 23 24 24 public:
Note:
See TracChangeset
for help on using the changeset viewer.