Skip to content

Commit

Permalink
Typo, should be G
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroz84 committed Jun 20, 2015
1 parent 4b8c532 commit fb0a86f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AD/ADrec/AliADReconstructor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ void AliADReconstructor::ConvertDigits(AliRawReader* rawReader, TTree* digitsTre
if(UGC) fTrigger |= (1<<5);
if(UBA) fTrigger |= (1<<12);
if(UBC) fTrigger |= (1<<13);
if(UBA || UBC) fTrigger |= (1<<14);
if(UGA || UGC) fTrigger |= (1<<14);
if((UGA && UBC) || (UGC && UBA)) fTrigger |= (1<<15);

fESDADfriend->SetTriggerInputs(fTrigger);
Expand Down Expand Up @@ -380,7 +380,7 @@ void AliADReconstructor::FillESD(TTree* digitsTree, TTree* /*clustersTree*/,AliE

if(UBA) fTrigger |= (1<<12);
if(UBC) fTrigger |= (1<<13);
if(UBA || UBC) fTrigger |= (1<<14);
if(UGA || UGC) fTrigger |= (1<<14);
if((UGA && UBC) || (UGC && UBA)) fTrigger |= (1<<15);

fESDAD->SetTriggerBits(fTrigger);
Expand Down

0 comments on commit fb0a86f

Please sign in to comment.