]>
Commit | Line | Data |
---|---|---|
58d634dc | 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 | ||
16 | /* | |
7fffa85b | 17 | $Log: AliTOFChannelOnline.cxx,v $ |
18 | Revision 1.2 2007/11/24 14:52:33 zampolli | |
19 | Status flag implemented as UChar_t | |
20 | ||
98f5acd7 | 21 | Revision 1.1 2006/10/26 09:13:24 arcelli |
22 | TOF Online Calibration channel (C.Zampolli) | |
23 | ||
58d634dc | 24 | */ |
25 | ||
26 | /////////////////////////////////////////////////////////////////////////////// | |
27 | // // | |
28 | // class for TOF Online calibration // | |
29 | // // | |
30 | /////////////////////////////////////////////////////////////////////////////// | |
31 | ||
32 | #include "AliTOFChannelOnline.h" | |
33 | ||
34 | ClassImp(AliTOFChannelOnline) | |
35 | ||
36 | //________________________________________________________________ | |
37 | AliTOFChannelOnline::AliTOFChannelOnline(): | |
7fffa85b | 38 | //fStatus(kFALSE), |
58d634dc | 39 | fDelay(0) |
40 | { | |
41 | //default constructor | |
42 | } | |
43 | ||
44 | //________________________________________________________________ | |
7fffa85b | 45 | //AliTOFChannelOnline::AliTOFChannelOnline(Bool_t status, Float_t delay): |
46 | AliTOFChannelOnline::AliTOFChannelOnline(Float_t delay): | |
47 | //fStatus(status), | |
58d634dc | 48 | fDelay(delay) |
49 | { | |
50 | // constructor with status and delay | |
51 | } | |
52 | ||
53 | //________________________________________________________________ | |
54 | AliTOFChannelOnline::AliTOFChannelOnline(const AliTOFChannelOnline& channel) : | |
55 | TObject(channel), | |
7fffa85b | 56 | // fStatus(kFALSE), |
58d634dc | 57 | fDelay(0) |
58 | { | |
59 | // copy constructor | |
60 | ||
61 | } | |
62 | ||
63 | ||
64 | //________________________________________________________________ | |
65 | AliTOFChannelOnline &AliTOFChannelOnline::operator =(const AliTOFChannelOnline& channel) | |
66 | { | |
67 | // assignment operator | |
8a190ba2 | 68 | |
69 | if (this == &channel) | |
70 | return *this; | |
71 | ||
72 | TObject::operator=(channel); | |
73 | // fStatus= channel.GetStatus(); | |
58d634dc | 74 | fDelay=channel.GetDelay(); |
75 | return *this; | |
76 | } | |
77 | ||
78 | // | |
79 |