ATLAS Offline Software
Loading...
Searching...
No Matches
LArGlobalTimeOffset.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef LARGLOBALTIMEOFFSET_H
6#define LARGLOBALTIMEOFFSET_H
7
11
13 public:
14 LArGlobalTimeOffset(); //Constructor
15 virtual ~LArGlobalTimeOffset() {}; //Destructor
16 inline void setTimeOffset(const float offset) {m_offset=offset;} //Setter
17 inline float TimeOffset() const {return m_offset;} //Getter
18
19 private:
20 float m_offset;
21};
22
23
24CLASS_DEF( LArGlobalTimeOffset, 213690101, 1)
26#endif
Provide an interface for finding inheritance information at run time.
#define SG_BASES(D,...)
Declare the base classes from which D derives.
macros to associate a CLID to a type
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
void setTimeOffset(const float offset)