ATLAS Offline Software
PrescaleSetLoader.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 //
7 //NAME: PrescaleSetLoader.h
8 //PACKAGE: TrigConfStorage
9 //
10 //AUTHOR: J.Haller (CERN) Johannes.Haller@cern.ch
11 //CREATED: 25. Jan. 2006
12 //
13 //PURPOSE:
14 // Loads a L1 Prescale from a XML file.
15 // ** Loads using the 64bit classes.
16 //
18 
19 #ifndef TrigConf_PrescaleSetLoader
20 #define TrigConf_PrescaleSetLoader
21 
24 
25 
26 namespace TrigConf {
27 
28  class PrescaleSetLoader : virtual public IPrescaleSetLoader, public DBLoader {
29  public:
30 
31  PrescaleSetLoader( StorageMgr& sm, coral::ISessionProxy& session) : DBLoader("PrescaleSetLoader", sm, session) {}
32  virtual ~PrescaleSetLoader() override = default;
33 
34  virtual bool load(unsigned int ctpVersion, PrescaleSet& data) override;
35  };
36 }
37 
38 #endif
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
ILoader.h
TrigConf::PrescaleSet
Definition: PrescaleSet.h:22
TrigConf::IPrescaleSetLoader
Definition: IPrescaleSetLoader.h:13
TrigConf::PrescaleSetLoader::load
virtual bool load(unsigned int ctpVersion, PrescaleSet &data) override
Definition: PrescaleSetLoader.cxx:28
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::PrescaleSetLoader
Definition: PrescaleSetLoader.h:28
TrigConf::DBLoader
Base class for loaders of configurations from the TriggerDB.
Definition: DBLoader.h:20
TrigConf::PrescaleSetLoader::~PrescaleSetLoader
virtual ~PrescaleSetLoader() override=default
DBLoader.h
TrigConf::PrescaleSetLoader::PrescaleSetLoader
PrescaleSetLoader(StorageMgr &sm, coral::ISessionProxy &session)
Definition: PrescaleSetLoader.h:31