ATLAS Offline Software
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
11 class LArTdriftP{
12 public:
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::LArTdriftP
LArTdriftP(float d)
Definition: LArTdriftP.h:14
hist_file_dump.d
d
Definition: hist_file_dump.py:137
LArTdriftP
Definition: LArTdriftP.h:11
LArTdriftP::m_Tdrift
float m_Tdrift
Definition: LArTdriftP.h:15
LArTdriftP::isEmpty
bool isEmpty() const
Definition: LArTdriftP.h:15
LArTdriftP::LArTdriftP
LArTdriftP()
Definition: LArTdriftP.h:13