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