4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
7 /* $Id: AliCTPInputTimeParams.h 22322 2007-11-22 11:43:14Z cvetan $ */
9 ///////////////////////////////////////////////////////////////////////////////
15 class AliCTPInputTimeParams : public TObject {
18 AliCTPInputTimeParams();
19 AliCTPInputTimeParams( TString& name, UInt_t& level, UInt_t delay, TString edge );
21 virtual ~AliCTPInputTimeParams() {}
22 AliCTPInputTimeParams( const AliCTPInputTimeParams &ctptime );
23 AliCTPInputTimeParams& operator=(const AliCTPInputTimeParams& ctptime);
26 TString GetInputName() const { return fName; }
27 UInt_t GetLevel() const { return fLevel; }
28 UInt_t GetDelay() const { return fDelay; }
29 TString GetEdge() const { return fEdge; }
32 void SetCTPInputTimeParams( TString name, UInt_t level,
33 UInt_t delay, TString edge );
35 virtual void Print( const Option_t* opt ="" ) const;
46 ClassDef( AliCTPInputTimeParams, 1 )