Changeset 3984 for trunk/MagicSoft/Mars
- Timestamp:
- 05/05/04 17:34:23 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mtemp/mifae
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mtemp/mifae/Changelog
r3981 r3984 20 20 21 21 2004/05/05: Ester Aliu 22 * library/MPSFFitCalc.cc library/MSrcRotate.cc 23 - change some mathematical functions to root equivalents 24 22 25 * library/MIslands.[h,cc], library/MIslandCalc.[h,cc], 23 26 library/MIslandClean.[h,cc] … … 27 30 - add MIslands, MIslandCalc, MIslandClean 28 31 29 2004/05/05: Javier Lopez32 2004/05/05: Javier Lopez 30 33 * library/MFHVNotNominal.[h,cc] 31 34 - filter to flag events(pixels) with non nominal hv -
trunk/MagicSoft/Mars/mtemp/mifae/library/MPSFFitCalc.cc
r3947 r3984 230 230 for(Int_t i=0; i<numVar; i++) 231 231 if (fVinit[i] != 0) 232 fStep[i] = abs(fVinit[i]/sqrt2);232 fStep[i] = TMath::Abs(fVinit[i]/sqrt2); 233 233 234 234 -
trunk/MagicSoft/Mars/mtemp/mifae/library/MSrcRotate.cc
r3973 r3984 154 154 fDeltaT = (fFinTime.GetMjd()-fIniTime.GetMjd())/fNEvts; 155 155 156 if((ULong_t) round(fIniTime.GetMjd())!=(ULong_t)round(fFinTime.GetMjd()))156 if((ULong_t)TMath::Nint(fIniTime.GetMjd())!=(ULong_t)TMath::Nint(fFinTime.GetMjd())) 157 157 { 158 158 *fLog << err << "MSrcRotate::Process Error: Inial and final MJDs are different ("<<fIniTime.GetMjd()<<"!="<<fFinTime.GetMjd()<<")" << endl; -
trunk/MagicSoft/Mars/mtemp/mifae/macros/signal.C
r3973 r3984 14 14 Float_t array[2]; 15 15 16 Int_t nbin2d = 10;16 Int_t nbin2d = 5; 17 17 Int_t ntotal = 2*nbin2d+1; 18 18
Note:
See TracChangeset
for help on using the changeset viewer.