X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TRD%2FAliTRDdigit.cxx;h=371b39f9c4dbcf6256f49b0a9fe20a68740cef33;hb=ada051d2c9e47a3f82ed9b03698bffe80cd7c96b;hp=e051686251cf5162cbb9b48eae7364aac0d4c18e;hpb=2ab0c72500f5baaae8a0a5299ab6566b50c278b4;p=u%2Fmrichter%2FAliRoot.git diff --git a/TRD/AliTRDdigit.cxx b/TRD/AliTRDdigit.cxx index e051686251c..371b39f9c4d 100644 --- a/TRD/AliTRDdigit.cxx +++ b/TRD/AliTRDdigit.cxx @@ -15,33 +15,7 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ -/* -$Log$ -Revision 1.5 2000/11/01 14:53:20 cblume -Merge with TRD-develop - -Revision 1.1.2.4 2000/10/17 02:27:34 cblume -Get rid of global constants - -Revision 1.1.2.3 2000/10/06 16:49:46 cblume -Made Getters const - -Revision 1.1.2.2 2000/09/22 14:42:05 cblume -Changed data members to UShort_t - -Revision 1.4 2000/06/08 18:32:58 cblume -Make code compliant to coding conventions - -Revision 1.3 2000/06/07 16:25:37 cblume -Try to remove compiler warnings on Sun and HP - -Revision 1.2 2000/05/08 16:17:27 cblume -Merge TRD-develop - -Revision 1.1.2.1 2000/05/08 14:40:29 cblume -Introduce raw digit bit flag and DecodeAmp() - -*/ +/* $Id$ */ /////////////////////////////////////////////////////////////////////////////// // // @@ -54,25 +28,24 @@ Introduce raw digit bit flag and DecodeAmp() ClassImp(AliTRDdigit) //_____________________________________________________________________________ - - // Marks a raw digit - const UInt_t AliTRDdigit::fgkRawDigit = 0x00000001; - -//_____________________________________________________________________________ -AliTRDdigit::AliTRDdigit():AliDigitNew() +AliTRDdigit::AliTRDdigit() + :AliDigitNew() + ,fRow(0) + ,fCol(0) + ,fTime(0) { // // Default constructor // - fRow = 0; - fCol = 0; - fTime = 0; - } //_____________________________________________________________________________ -AliTRDdigit::AliTRDdigit(Bool_t isRaw, Int_t *digits, Int_t *amp):AliDigitNew() +AliTRDdigit::AliTRDdigit(Int_t * const digits, const Int_t *amp) + :AliDigitNew() + ,fRow(0) + ,fCol(0) + ,fTime(0) { // // Create a TRD digit @@ -89,8 +62,6 @@ AliTRDdigit::AliTRDdigit(Bool_t isRaw, Int_t *digits, Int_t *amp):AliDigitNew() // Store the signal amplitude fAmp = amp[0]; - if (isRaw) SetBit(fgkRawDigit); - } //_____________________________________________________________________________ @@ -101,14 +72,3 @@ AliTRDdigit::~AliTRDdigit() // } - -//_____________________________________________________________________________ -Int_t AliTRDdigit::DecodeAmp() const -{ - // - // Decodes the digit amplitude - // - - return 0; - -}