/************************************************************************** * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ /* $Id: */ //____________________________________________________________________ // // T0 // Class for reading T0 RAW data in TOF data format // #include "AliT0RawReader.h" #include "AliT0Parameters.h" #include "AliBitPacking.h" #include "TBits.h" #include #include "TMath.h" #include "TH1F.h" #include "TArrayI.h" #include "AliLog.h" ClassImp(AliT0RawReader) AliT0RawReader::AliT0RawReader (AliRawReader *rawReader, Bool_t isOnline) : TTask("T0RawReader","read raw T0 data"), fRawReader(rawReader), fData(NULL), fPosition(0), fParam(NULL), fIsOnline(isOnline) { // // create an object to read T0raw digits AliDebug(1,"Start "); fRawReader->Reset(); fRawReader->Select("T0"); fParam = AliT0Parameters::Instance(); if (fIsOnline) fParam->InitIfOnline(); else fParam->Init(); } AliT0RawReader::~AliT0RawReader () { // } /* AliT0RawReader::AliT0RawReader(const AliT0RawReader& o): TTask(o), fRawReader(rawReader), fData(NULL), fPosition(0) { // } */ Bool_t AliT0RawReader::Next() { // read the next raw digit // returns kFALSE if there is no digit left //"LookUpTable": // Amplitude LED TRM=0; chain=0; TDC 0 -5 channel 0,2,4,6 // Time CFD TRM=0; chain=0; TDC 6 - 11 channel 0,2,4,6 // mean time TRM=0; chain=0; TDC 12 channel 0 // T0A TRM=0; chain=0; TDC 12 channel 2 // T0C TRM=0; chain=0; TDC 12 channel 4 // vertex TRM=0; chain=0; TDC 12 channel 6 // mult QTC0 TRM=0; chain=0; TDC 13 channel 0 // mult QTC1 TRM=0; chain=0; TDC 13 channel 2 // Charge QTC0 TRM=1; chain=0; TDC 0 -5 channel 0,2,4,6 // Charge QTC1 TRM=1; chain=0; TDC 6 - 11 channel 0,2,4,6 // T0A trigger TRM=1; chain=0; TDC 12 channel 0 // T0C trigger TRM=1; chain=0; TDC 12 channel 2 // vertex trigger TRM=1; chain=0; TDC 12 channel 4 // trigger central TRM=1; chain=0; TDC 13 channel 0 // tigger semicenral TRM=1; chain=0; TDC 13 channel 2 // // allData array collect data from all channels in one : // allData[0] - allData[23] 24 CFD channels // allData[24] - allData[47] 24 LED channels // allData[48] mean (T0) signal // allData[49] time difference (vertex) UInt_t word; Int_t time=0, itdc=0, ichannel=0, uu; Int_t numberOfWordsInTRM=0, iTRM=0; Int_t tdcTime, koef,hit=0; Int_t koefhits[110]; Int_t trm_chain_header = 0x00000000; Int_t trm_chain_trailer = 0x10000000; UInt_t filler = 0x70000000; Bool_t correct=kTRUE; Int_t header; Int_t fNTRM = fParam->GetNumberOfTRMs(); for ( Int_t k=0; k<110; k++) { koefhits[k]=0; for ( Int_t jj=0; jj<50; jj++) { fAllData[k][jj]=0; } } do { if (!fRawReader->ReadNextData(fData)) return kFALSE; } while (fRawReader->GetDataSize() == 0); fPosition = 0; cout.setf( ios_base::hex, ios_base::basefield ); //DRM header for (Int_t i=0; i<6; i++) { word = GetNextWord(); // cout<<" DRM header "<AddFatalErrorLog(kWrongDRMHeader,Form("w=%x",word)); break; } } // cout<<" fNTRM "<AddMajorErrorLog(kWrongTRMHeader,Form("w=%x",word)); break; } numberOfWordsInTRM=AliBitPacking::UnpackWord(word,4,16); // cout<<" numberOfWordsInTRM "<AddMajorErrorLog(kWrongChain0Header,Form("w=%x",word)); break; } word = GetNextWord(); // cout<<" next "<GetChannel(iTRM,itdc,ichain,ichannel); if (koef != 0 ) // cout<<"RawReader>> "<<"koef "<AddMajorErrorLog(kIncorrectLUT); correct=kFALSE; } if(correct){ hit=koefhits[koef]; if(hit>50) { AliWarning(Form("Too many hits for %i channel ! ",koef)); break; } fAllData[koef][hit]=time; koefhits[koef]++; } word = GetNextWord(); // cout<<" next word in cycle "<AddMajorErrorLog(kWrongChain0Trailer,Form("w=%x",word)); break; } } word = GetNextWord(); //TRM trailer // cout<<" TRM trailer "<AddMajorErrorLog(kWrongTRMTrailer,Form("w=%x",word)); break; } } //TRM loop word = GetNextWord(); // // cout<<" after TRM trailer "<AddFatalErrorLog(kWrongDRMTrailer,Form("w=%x",word)); } cout.setf( ios_base::dec, ios_base::basefield ); return kTRUE; } //_____________________________________________________________________________ Int_t AliT0RawReader::GetPosition() { // Sets the position in the // input stream if (((fRawReader->GetDataSize() * 8) % 32) != 0) AliFatal(Form("Incorrect raw data size ! %d words are found !",fRawReader->GetDataSize())); return (fRawReader->GetDataSize() * 8) / 32; } //_____________________________________________________________________________ UInt_t AliT0RawReader::GetNextWord() { // Read the next 32 bit word in backward direction // The input stream access is given by fData and fPosition // fPosition--; Int_t iBit = fPosition * 32; Int_t iByte = iBit / 8; UInt_t word = 0; word = fData[iByte+3]<<24; word |= fData[iByte+2]<<16; word |= fData[iByte+1]<<8; word |= fData[iByte]; fPosition++; return word; }