-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAliRPCValueScaler.h
34 lines (28 loc) · 1.09 KB
/
AliRPCValueScaler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// AliRPCValueCurrent.h
// Aliroot project
//
// Created by Gabriele Gaetano Fronzé on 21/12/15.
// Copyright © 2015 Gabriele Gaetano Fronzé. All rights reserved.
//
#ifndef AliRPCValueScaler_h
#define AliRPCValueScaler_h
#include <stdio.h>
#include "AliRPCValueDCS.h"
class AliRPCValueScaler : public AliRPCValueDCS{
public:
AliRPCValueScaler();
AliRPCValueScaler(const AliRPCValueScaler &obj) : AliRPCValueDCS(obj){};
AliRPCValueScaler(UInt_t runNumber,ULong64_t timeStamp,UInt_t runYear, Long64_t scalerCounts,Bool_t isCalib,TString beamType, Float_t beamEnergy, TString LHCStatus, Double_t deltaT=-1., Bool_t overflow=kFALSE);
~AliRPCValueScaler(){};
inline Long64_t GetScalerCounts() const { return fScalerCounts; };
inline void SetScalerCounts(Long64_t scalerCounts) { fScalerCounts=scalerCounts; };
inline Bool_t GetHasOverflow() const { return fOverflow; };
inline Float_t GetDeltaT() const { return fDeltaT; };
private:
Long64_t fScalerCounts;
Bool_t fOverflow;
Float_t fDeltaT;
ClassDef(AliRPCValueScaler,3);
};
#endif /* AliRPCValueScaler_h */