ATLAS Offline Software
Loading...
Searching...
No Matches
LArMinBiasP.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_LARMINBIASP
6#define LARRAWCONDITIONS_LARMINBIASP
7
8#include <vector>
9
12
13
15{
16public:
17
18 LArMinBiasP() : m_MinBiasRMS(-9999999) {}
19 LArMinBiasP(float rms) : m_MinBiasRMS(rms) {}
20 bool isEmpty() const { return m_MinBiasRMS < -9999 ; } ;
22
23};
24
25#endif
26
LArMinBiasP(float rms)
Definition LArMinBiasP.h:19
float m_MinBiasRMS
Definition LArMinBiasP.h:21
bool isEmpty() const
Definition LArMinBiasP.h:20