ATLAS Offline Software
Loading...
Searching...
No Matches
LArNoiseP.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_LARNOISEP
6#define LARRAWCONDITIONS_LARNOISEP
7
8#include <vector>
9
10// persistent c-struct
12{
13public:
14 LArNoiseP() : m_Noise(-9999999) {}
15 LArNoiseP(float n) : m_Noise(n) {}
16 bool isEmpty() const { return m_Noise < -9999 ; } ;
17 float m_Noise;
18};
19
20#endif
21
bool isEmpty() const
Definition LArNoiseP.h:16
float m_Noise
Definition LArNoiseP.h:17
LArNoiseP(float n)
Definition LArNoiseP.h:15