]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/Cal/AliTRDCalGlobals.h
Move sampling frequency to common params
[u/mrichter/AliRoot.git] / TRD / Cal / AliTRDCalGlobals.h
CommitLineData
7754cd1f 1#ifndef AliTRDCALGLOBALS_H
2#define AliTRDCALGLOBALS_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8///////////////////////////////////////////////////////////////////////////////
9// //
2745a409 10// TRD calibration class for global TRD parameters //
7754cd1f 11// //
12///////////////////////////////////////////////////////////////////////////////
13
14#include "TNamed.h"
15
16class AliTRDCalGlobals : public TNamed {
2745a409 17
18 public:
19
20 AliTRDCalGlobals();
b43a3e17 21 AliTRDCalGlobals(const Text_t *name, const Text_t *title);
2745a409 22 virtual ~AliTRDCalGlobals() {};
7754cd1f 23
2745a409 24 void SetNumberOfTimeBins(Int_t value) { fNumberOfTimeBins = value; };
25 Int_t GetNumberOfTimeBins() const { return fNumberOfTimeBins; };
7754cd1f 26
2745a409 27 protected:
28
2745a409 29 Int_t fNumberOfTimeBins; // Number of timebins
7754cd1f 30
b43a3e17 31 ClassDef(AliTRDCalGlobals,2) // TRD calibration class for global TRD parameters
2745a409 32
7754cd1f 33};
34
35#endif