Skip to content

Commit

Permalink
New tag v4-15-Rev-01
Browse files Browse the repository at this point in the history
  • Loading branch information
hristov committed Sep 9, 2008
2 parents 217c8e9 + 5050e6f commit e8b393a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions T0/AliT0Reconstructor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -364,14 +364,13 @@ void AliT0Reconstructor::Reconstruct(AliRawReader* rawReader, TTree*recTree) con

Double_t sl = timeLED[ipmt] - timeCFD[ipmt];
time[ipmt] = fCalib-> WalkCorrection( ipmt, Int_t(sl), timeCFD[ipmt],"cosmic" ) ;
time[ipmt] = time[ipmt] - allData[0][0] + 5000;
AliDebug(10,Form(" ipmt %i QTC %i , time in chann %i (led-cfd) %i ",
ipmt, Int_t(adc[ipmt]) ,Int_t(time[ipmt]),Int_t( sl)));
Double_t ampMip =( (TGraph*)fAmpLED.At(ipmt))->Eval(sl);
Double_t qtMip = ((TGraph*)fQTC.At(ipmt))->Eval(adc[ipmt]);
AliDebug(10,Form(" Amlitude in MIPS LED %f , QTC %f \n ",ampMip,qtMip));

frecpoints->SetTime(ipmt, Float_t(time[ipmt]) );
frecpoints->SetTime(ipmt, Float_t(time[ipmt] - allData[0][0] + 5000) );
frecpoints->SetAmp(ipmt, Float_t( ampMip)); //for cosmic &pp beam
frecpoints->SetAmpLED(ipmt, Float_t(qtMip));
} //if physic data end
Expand Down

0 comments on commit e8b393a

Please sign in to comment.