ATLAS Offline Software
Loading...
Searching...
No Matches
LArDetCellParamsP.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_LARDETCELLPARAMSP
6#define LARRAWCONDITIONS_LARDETCELLPARAMSP
7
8#include <vector>
9
10// persistent c-struct
12public:
13 LArDetCellParamsP() : m_Omega0(-9999999), m_Taur(-9999999) {}
14 LArDetCellParamsP(float o, float t)
15 : m_Omega0(o), m_Taur(t) {}
16 bool isEmpty() const { return (m_Omega0 < -9999 && m_Taur < -9999) ; } ;
17 float m_Omega0;
18 float m_Taur;
19};
20
21
22#endif
23
LArDetCellParamsP(float o, float t)