Skip to content

Commit

Permalink
compilation warning removed
Browse files Browse the repository at this point in the history
  • Loading branch information
AllaMaevskaya committed Dec 7, 2015
1 parent 2254d38 commit 20c18df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion T0/AliAnalysisTaskT0QA.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void AliAnalysisTaskT0QA::UserExec(Option_t *)


for (Int_t i=0; i<24; i++) {
if(time[i]<9999 &&abs(time[i])>1e-8 && amplitude[i]<9999&&abs(amplitude[i])>1e-8 )
if(time[i]<9999 &&TMath::Abs(time[i])>1e-8 && amplitude[i]<9999&&TMath::Abs(amplitude[i])>1e-8 )
{
// cout<<"time "<<time[i]<<" amplitude "<<amplitude[i]<<endl;
fTimeVSAmplitude[i]->Fill(amplitude[i],time[i]);
Expand Down

0 comments on commit 20c18df

Please sign in to comment.