ATLAS Offline Software
DeadTimeLoader.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 //
7 //NAME: DeadTimeLoader.h
8 //PACKAGE: TrigConfStorage
9 //
10 //AUTHOR: J.Haller (CERN) Johannes.Haller@cern.ch
11 //CREATED: 31. Oct. 2005
12 //
13 //PURPOSE:
14 //
15 //
17 
18 #ifndef TrigConf_DeadTimeLoader
19 #define TrigConf_DeadTimeLoader
20 
23 
24 namespace TrigConf {
25 
27  class DeadTimeLoader : virtual public IDeadTimeLoader,public DBLoader {
28  public:
29 
36  DeadTimeLoader( StorageMgr& sm, coral::ISessionProxy& session)
37  : ILoader(), DBLoader(sm, session) {}
38 
40  virtual ~DeadTimeLoader() override = default;
41 
42  virtual bool load( DeadTime& data) override;
43  };
44 }
45 
46 #endif
IDeadTimeLoader.h
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
TrigConf::IDeadTimeLoader
Definition: IDeadTimeLoader.h:27
TrigConf::DeadTimeLoader::~DeadTimeLoader
virtual ~DeadTimeLoader() override=default
destructor
TrigConf::ILoader
Interface class for loaders.
Definition: ILoader.h:17
TrigConf::DeadTime
Definition: DeadTime.h:13
TrigConf::StorageMgr
Database Storage Manager, controls the database session and the different loader classes for DB acces...
Definition: StorageMgr.h:23
TrigConf
Forward iterator to traverse the main components of the trigger configuration.
Definition: Config.h:22
TrigConf::DeadTimeLoader::load
virtual bool load(DeadTime &data) override
Definition: DeadTimeLoader.cxx:39
TrigConf::DBLoader
Base class for loaders of configurations from the TriggerDB.
Definition: DBLoader.h:20
TrigConf::DeadTimeLoader::DeadTimeLoader
DeadTimeLoader(StorageMgr &sm, coral::ISessionProxy &session)
constructor
Definition: DeadTimeLoader.h:36
DBLoader.h
TrigConf::DeadTimeLoader
TriggerDB loader of the LVL1 deadtime configuration.
Definition: DeadTimeLoader.h:27