]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSOnlineSPDscanMeanTh.h
Fix coverity
[u/mrichter/AliRoot.git] / ITS / AliITSOnlineSPDscanMeanTh.h
CommitLineData
b15de2d2 1#ifndef ALI_ITS_ONLINESPDSCANMEANTH_H
2#define ALI_ITS_ONLINESPDSCANMEANTH_H
3
4////////////////////////////////////////////////////////////
5// Author: Henrik Tydesjo //
6// Interface class to the containers of an online mean //
7// threshold scan. //
8////////////////////////////////////////////////////////////
9
10#include "AliITSOnlineSPDscanMultiple.h"
11
12class AliITSOnlineSPDscanMeanTh : public AliITSOnlineSPDscanMultiple {
13
14 public:
15 AliITSOnlineSPDscanMeanTh(){}
6ddf3d66 16 AliITSOnlineSPDscanMeanTh(const Char_t *fileName, Bool_t readFromGridFile=kFALSE);
b15de2d2 17 AliITSOnlineSPDscanMeanTh(const AliITSOnlineSPDscanMeanTh& scan);
18 virtual ~AliITSOnlineSPDscanMeanTh();
19 AliITSOnlineSPDscanMeanTh& operator=(const AliITSOnlineSPDscanMeanTh& scan);
20
b15de2d2 21 virtual UInt_t AddScanStep();
22
23 void SetDacLow(UInt_t nsi, UInt_t hs, Int_t val);
24 void SetDacHigh(UInt_t nsi, UInt_t hs, Int_t val);
25 void SetTPAmp(UInt_t nsi, UInt_t hs, Int_t val);
26
27 Int_t GetDacLow(UInt_t nsi, UInt_t hs);
28 Int_t GetDacHigh(UInt_t nsi, UInt_t hs);
29 Int_t GetTPAmp(UInt_t nsi, UInt_t hs);
30
53ae21ce 31};
b15de2d2 32
33#endif