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