- const Bool_t skipBadEvent=kFALSE;
- const AliHLTComponentBlockData* iter = NULL;
-
- fRawMemoryReader->SetMemory( reinterpret_cast<UChar_t*>( dtaPtr->fPtr ), dtaPtr->fSize );
-
- // fPHOSRawStream = new AliCaloRawStream(fRawMemoryReader,"PHOS");
-
- fRawMemoryReader->DumpData();
-
- Logging(kHLTLogInfo, "HLT", "Sample", "PhosHLTRawAnalyzerComonent, DoEvent");
-
- // UChar_t *tmpDtaPtr = (UChar_t *)dtaPtr->fPtr;
- // UInt32_t *tmpDtaPtr = (UInt32_t *)dtaPtr->fPtr;
- // unsigned long *tmpDtaPtr = (unsigned long *)dtaPtr->fPtr;
-
-
- cout <<"PHOSHLT DoEvent: processing event:"<< eventCount << endl;
- cout <<"Struct size = " <<evtDtaPtr.fStructSize << endl;
- cout <<"Event ID = " <<evtDtaPtr.fEventID << endl;
- cout <<"Block count = " <<evtDtaPtr.fBlockCnt << endl;
- cout <<"Block size = " << dtaPtr->fSize << endl;
- cout <<"printing out start od data block" << endl;
- cout << "content of data pointer =" << tmpDtaPtr << endl;
-
+ for(int mod = 0; mod <5; mod ++)
+ {
+ printf("\n *********** MODULE %d ************\n", mod);
+ for(int row = 0; row < 64; row ++)
+ {
+ for(int col = 0; col < 56; col ++)
+ {
+ if( fMaxValues[mod][row][col][0] != 0)
+ {
+ cout << fMaxValues[mod][row][col][0] << "\t";
+ }
+ }
+ }
+ }
+}