a2bf19ee |
1 | /************************************************************************** |
2 | * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
3 | * * |
4 | * Author: The ALICE Off-line Project. * |
5 | * Contributors are mentioned in the code where appropriate. * |
6 | * * |
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 | **************************************************************************/ |
15 | #include "AliT0LookUpValue.h" |
94249139 |
16 | //#include "iostream.h" |
a2bf19ee |
17 | |
18 | ClassImp(AliT0LookUpValue) |
19 | |
20 | AliT0LookUpValue:: AliT0LookUpValue(): TObject(), |
21 | fTRM(-1), |
22 | fTDC(-1), |
23 | fChain(-1), |
24 | fChannel(-1) |
25 | |
26 | |
27 | { |
28 | |
29 | /// |
30 | } |
256d4943 |
31 | //-------------------------------------------------------------------------------------- |
a2bf19ee |
32 | AliT0LookUpValue:: AliT0LookUpValue(Int_t trm, Int_t tdc, Int_t chain, Int_t channel) : TObject(), |
33 | fTRM(trm), |
34 | fTDC(tdc), |
35 | fChain(chain), |
36 | fChannel(channel) |
37 | { |
256d4943 |
38 | |
39 | //-------------------------------------------------------------------------------------- |
a2bf19ee |
40 | |
41 | } |
42 | Bool_t AliT0LookUpValue:: IsEqual(const TObject* obj) const |
43 | { |
44 | AliT0LookUpValue *b = ( AliT0LookUpValue*)obj; |
a2bf19ee |
45 | if ( b->GetTRM() == fTRM && |
46 | b->GetTDC() == fTDC && |
47 | b->GetChain() == fChain && |
48 | b->GetChannel() == fChannel ) return kTRUE; |
49 | else return kFALSE; |
50 | } |
256d4943 |
51 | |
52 | //------------------------------------------------------------------------------------ |
53 | void AliT0LookUpValue::Print(Option_t *) const |
a2bf19ee |
54 | { |
256d4943 |
55 | printf("AliT0LookUpValue TRM %i, TDC %i, chain %i channel %i\n",fTRM,fTDC,fChain,fChannel); |
a2bf19ee |
56 | } |
256d4943 |
57 | //-------------------------------------------------------------------------------------- |