1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
18 Revision 1.2 2007/03/28 10:50:33 decaro
19 Rounding off problem in rawData coding/decoding: solved
21 Revision 1.1 2007/02/20 15:57:00 decaro
22 Raw data update: to read the TOF raw data defined in UNPACKED mode
24 Revision 0.1 2006/12/15 A.De Caro
28 //////////////////////////////////////////////////////
30 // This class provides the TOF raw data object //
32 //////////////////////////////////////////////////////
36 #include "AliTOFGeometry.h"
37 #include "AliTOFrawData.h"
39 ClassImp(AliTOFrawData)
41 //_____________________________________________________________________________
42 AliTOFrawData::AliTOFrawData() :
61 //_____________________________________________________________________________
62 AliTOFrawData::AliTOFrawData(Int_t a, Int_t b, Int_t c, Int_t d, Int_t e,
63 Int_t f, Int_t g, Int_t h, Int_t l) :
82 //_____________________________________________________________________________
83 AliTOFrawData::AliTOFrawData(Int_t a, Int_t b, Int_t c, Int_t d, Int_t e,
84 Int_t f, Int_t ee, Int_t ff, Int_t g, Int_t h, Int_t l) :
103 //_____________________________________________________________________________
104 AliTOFrawData::AliTOFrawData(const AliTOFrawData& r) :
119 // dummy copy constructor
121 fACQflag = r.fACQflag;
124 fTRMchain = r.fTRMchain;
126 fTDCchannel = r.fTDCchannel;
127 fLeading = r.fLeading;
128 fTrailing = r.fTrailing;
135 //_____________________________________________________________________________
136 AliTOFrawData& AliTOFrawData::operator=(const AliTOFrawData& r)
139 // dummy assignment operator
141 this->fACQflag = r.fACQflag;
142 this->fPSbit = r.fPSbit;
144 this->fTRMchain = r.fTRMchain;
146 this->fTDCchannel = r.fTDCchannel;
147 this->fLeading = r.fLeading;
148 this->fTrailing = r.fTrailing;
150 this->fTime = r.fTime;
151 this->fError = r.fError;
156 //_____________________________________________________________________________
157 void AliTOFrawData::Update(Int_t tof, Int_t tot, Int_t leading, Int_t trailing, Int_t psBit, Int_t acq, Int_t errorFlag)
160 // To update a raw data object:
161 // if there is just a leading edge measurement,
162 // this method adds the trailing edge measurement
163 // to evaluate the time-of-flight and time-over-threshold measurements
166 AliDebug(2,Form(" %10.0f %10.0f %10.0f %1i %1i %1i",tof, tot, leading, psBit, acq, errorFlag));
168 if (fLeading!=-1 && fTime==-1 && fToT==-1 && trailing!=-1) {
170 fTrailing = trailing;
172 fToT = Int_t((trailing - fLeading)*AliTOFGeometry::TdcBinWidth()/AliTOFGeometry::ToTBinWidth());
176 else if (fLeading!=-1 && fTime==-1 && fToT==-1 && leading==-1 && trailing!=-1) {
179 fToT = Int_t((trailing - fLeading)*AliTOFGeometry::TdcBinWidth()/AliTOFGeometry::ToTBinWidth());