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