]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/STEER/AliCTPInputTimeParams.cxx
Merge branch 'TPCdev' of https://git.cern.ch/reps/AliRoot into TPCdev
[u/mrichter/AliRoot.git] / STEER / STEER / AliCTPInputTimeParams.cxx
CommitLineData
fabd1b29 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
fabd1b29 16
17#include <Riostream.h>
18
fabd1b29 19#include "TObject.h"
20#include "AliLog.h"
21#include "AliCTPInputTimeParams.h"
22
66b0310c 23using std::endl;
24using std::cout;
fabd1b29 25ClassImp(AliCTPInputTimeParams)
26
27//_____________________________________________________________________________
28AliCTPInputTimeParams::AliCTPInputTimeParams():
29 fName(0),
30 fLevel(0),
31 fDelay(0),
125fd567 32 fEdge(0),
33 fDeltaMin(0),
34 fDeltaMax(0)
fabd1b29 35{
36 // Default constructor
37}
38
39//_____________________________________________________________________________
125fd567 40AliCTPInputTimeParams::AliCTPInputTimeParams( TString& name, UInt_t& level, UInt_t delay, TString edge, UInt_t deltamin, UInt_t deltamax ):
fabd1b29 41 fName(name),
42 fLevel(level),
43 fDelay( delay),
125fd567 44 fEdge(edge),
45 fDeltaMin(deltamin),
46 fDeltaMax(deltamax)
fabd1b29 47{
48}
49//_____________________________________________________________________________
50AliCTPInputTimeParams::AliCTPInputTimeParams(const AliCTPInputTimeParams &ctptime):
51 TObject(ctptime),
52 fName(ctptime.fName),
53 fLevel(ctptime.fLevel),
54 fDelay(ctptime.fDelay),
125fd567 55 fEdge(ctptime.fEdge),
56 fDeltaMin(ctptime.fDeltaMin),
57 fDeltaMax(ctptime.fDeltaMax)
58
fabd1b29 59{
60 // copy constructor
61}
62//_____________________________________________________________________________
63AliCTPInputTimeParams& AliCTPInputTimeParams::operator=(const AliCTPInputTimeParams &ctptime)
64{
65 //assignment operator
66 if(this==&ctptime) return *this;
67 ((TObject *)this)->operator=(ctptime);
68 fName=ctptime.fName;
69 fLevel=ctptime.fLevel;
70 fDelay=ctptime.fDelay;
71 fEdge=ctptime.fEdge;
125fd567 72 fDeltaMin=ctptime.fDeltaMin;
73 fDeltaMax=ctptime.fDeltaMax;
fabd1b29 74 return *this;
75}
76//_____________________________________________________________________________
125fd567 77void AliCTPInputTimeParams::SetCTPInputTimeParams( TString name, UInt_t level, UInt_t delay, TString edge, UInt_t deltamin, UInt_t deltamax )
fabd1b29 78{
79 fName = name;
80 fLevel = level;
81 fDelay = delay;
82 fEdge = edge;
125fd567 83 fDeltaMin = deltamin;
84 fDeltaMax = deltamax;
fabd1b29 85}
86
87//_____________________________________________________________________________
88void AliCTPInputTimeParams::Print( const Option_t* ) const
89{
90 // Print
91 cout << " CTP Input Time Params " << endl;
92 cout << " Input Name: " << fName << endl;
93 cout << " Level: " << fLevel << endl;
94 cout << " Delay: " << fDelay << endl;
95 cout << " Edge: " << fEdge << endl;
125fd567 96 cout << " DeltaMin: " << fDeltaMin << endl;
97 cout << " DeltaMax: " << fDeltaMax << endl;
fabd1b29 98}