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 **************************************************************************/
17 $Log: AliTOFChannelOnline.cxx,v $
18 Revision 1.2 2007/11/24 14:52:33 zampolli
19 Status flag implemented as UChar_t
21 Revision 1.1 2006/10/26 09:13:24 arcelli
22 TOF Online Calibration channel (C.Zampolli)
26 ///////////////////////////////////////////////////////////////////////////////
28 // class for TOF Online calibration //
30 ///////////////////////////////////////////////////////////////////////////////
32 #include "AliTOFChannelOnline.h"
34 ClassImp(AliTOFChannelOnline)
36 //________________________________________________________________
37 AliTOFChannelOnline::AliTOFChannelOnline():
44 //________________________________________________________________
45 //AliTOFChannelOnline::AliTOFChannelOnline(Bool_t status, Float_t delay):
46 AliTOFChannelOnline::AliTOFChannelOnline(Float_t delay):
50 // constructor with status and delay
53 //________________________________________________________________
54 AliTOFChannelOnline::AliTOFChannelOnline(const AliTOFChannelOnline& channel) :
64 //________________________________________________________________
65 AliTOFChannelOnline &AliTOFChannelOnline::operator =(const AliTOFChannelOnline& channel)
67 // assignment operator
68 // fStatus= channel.GetStatus();
69 fDelay=channel.GetDelay();