ATLAS Offline Software
ThresholdMonitorLoader.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: ThresholdMonitorLoader.h
8 //PACKAGE: TrigConfStorage
9 //
10 //AUTHOR: Gordon Fischer (CERN) Gordon.Fischer@cern.ch
11 //CREATED: 11. Oct. 2007
12 //
13 //PURPOSE:
14 //
15 //
17 
18 #ifndef TrigConf_ThresholdMonitorLoader
19 #define TrigConf_ThresholdMonitorLoader
20 
23 
24 namespace TrigConf {
25 
26  class ThresholdMonitorLoader : virtual public IThresholdMonitorLoader, public DBLoader {
27  public:
28 
29  ThresholdMonitorLoader( StorageMgr& sm, coral::ISessionProxy& session) : DBLoader(sm, session), m_MenuId(0) {}
30  virtual ~ThresholdMonitorLoader() override = default;
31 
32  virtual bool load( ThresholdMonitor& data) override;
33 
34  void setMenuId(const long& id);
35  long menuId();
36 
37  private:
38  long m_MenuId;
39  };
40 }
41 
42 #endif
43 
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
TrigConf::ThresholdMonitorLoader::~ThresholdMonitorLoader
virtual ~ThresholdMonitorLoader() override=default
TrigConf::StorageMgr
Database Storage Manager, controls the database session and the different loader classes for DB acces...
Definition: StorageMgr.h:23
TrigConf::ThresholdMonitorLoader::m_MenuId
long m_MenuId
Definition: ThresholdMonitorLoader.h:38
TrigConf::ThresholdMonitor
Definition: ThresholdMonitor.h:18
TrigConf
Forward iterator to traverse the main components of the trigger configuration.
Definition: Config.h:22
TrigConf::ThresholdMonitorLoader::ThresholdMonitorLoader
ThresholdMonitorLoader(StorageMgr &sm, coral::ISessionProxy &session)
Definition: ThresholdMonitorLoader.h:29
TrigConf::DBLoader
Base class for loaders of configurations from the TriggerDB.
Definition: DBLoader.h:20
DBLoader.h
TrigConf::ThresholdMonitorLoader::menuId
long menuId()
Definition: ThresholdMonitorLoader.cxx:262
TrigConf::ThresholdMonitorLoader::setMenuId
void setMenuId(const long &id)
Definition: ThresholdMonitorLoader.cxx:258
TrigConf::IThresholdMonitorLoader
Definition: IThresholdMonitorLoader.h:27
IThresholdMonitorLoader.h
TrigConf::ThresholdMonitorLoader
Definition: ThresholdMonitorLoader.h:26
TrigConf::ThresholdMonitorLoader::load
virtual bool load(ThresholdMonitor &data) override
Definition: ThresholdMonitorLoader.cxx:43