]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removing pointless manipulations with the L1 trigger message from TPC. In the new...
authorcvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 22 Feb 2008 16:42:34 +0000 (16:42 +0000)
committercvetan <cvetan@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 22 Feb 2008 16:42:34 +0000 (16:42 +0000)
RAW/alirawdump_main.cxx

index aeb437cd2c2c7c73757a6121b666f252f9a80f05..59c3f3f3c70c84901bf0be0b3c2bf9508bea339a 100644 (file)
@@ -168,10 +168,6 @@ static bool DumpEvent(const char *progname, AliRawEvent *rawEvent)
        // TPC L1 trigger message is shifted by 2 bits??
        UShort_t l1Message = cdh->GetL1TriggerMessage();
        UShort_t l1MessageRef = cdhRef->GetL1TriggerMessage();
-       if (detID == 3) {
-         l1Message = ((cdh->fWord2 >> 16) & 0x1F);
-         l1MessageRef = cdhRef->GetL1TriggerMessage() & 0x1F;
-       }
 
        if (l1Message != l1MessageRef)
          cout << "ERROR: CDH mismatch detected in L1TriggerMessage for detector " << AliDAQ::DetectorName(detID) << ": " << (Int_t)l1MessageRef << " ( " << (Int_t)cdhRef->GetL1TriggerMessage() << " ) " << " != " << (Int_t)l1Message << " ( " << (Int_t)cdh->GetL1TriggerMessage() << " )" << endl;