ATLAS Offline Software
Loading...
Searching...
No Matches
LArDAC2uAP.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef LARRAWCONDITIONS_LARDAC2UAP
6#define LARRAWCONDITIONS_LARDAC2UAP
7
8#include <vector>
13
14/* Modified for POOL persistency
15 Hong Ma
16 July 15, 2005
17*/
18
20{
21public:
22
23 LArDAC2uAP() : m_DAC2uA(float(ILArDAC2uA::ERRORCODE)) {}
24 LArDAC2uAP(float DAC2uA) : m_DAC2uA(DAC2uA) {}
25 bool isEmpty() const { return (m_DAC2uA == float(ILArDAC2uA::ERRORCODE));} ;
26 float m_DAC2uA;
27};
28
29
30#endif
31
float m_DAC2uA
Definition LArDAC2uAP.h:26
LArDAC2uAP(float DAC2uA)
Definition LArDAC2uAP.h:24
bool isEmpty() const
Definition LArDAC2uAP.h:25