ATLAS Offline Software
RandomLoader.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: RandomLoader.h
8 //PACKAGE: TrigConfStorage
9 //
10 //AUTHOR: Johannes Haller (CERN) Johannes.Haller@cern.ch
11 //CREATED: 31. Oct. 2005
12 //
13 //PURPOSE:
14 //
15 //
17 
18 #ifndef TrigConf_RandomLoader
19 #define TrigConf_RandomLoader
20 
23 
24 
25 namespace TrigConf {
26 
27  class RandomLoader : virtual public IRandomLoader, public DBLoader {
28  public:
29 
30  RandomLoader( StorageMgr& sm, coral::ISessionProxy& session) : DBLoader("RandomLoader", sm, session) {}
31  virtual ~RandomLoader() override = default;
32 
33  virtual bool load( Random& data) override;
34  };
35 }
36 
37 #endif
IRandomLoader.h
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
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::DBLoader
Base class for loaders of configurations from the TriggerDB.
Definition: DBLoader.h:20
TrigConf::Random
Definition: TrigConfiguration/TrigConfL1Data/TrigConfL1Data/Random.h:16
TrigConf::RandomLoader::~RandomLoader
virtual ~RandomLoader() override=default
DBLoader.h
TrigConf::RandomLoader::RandomLoader
RandomLoader(StorageMgr &sm, coral::ISessionProxy &session)
Definition: RandomLoader.h:30
TrigConf::RandomLoader::load
virtual bool load(Random &data) override
Definition: RandomLoader.cxx:17
TrigConf::RandomLoader
Definition: RandomLoader.h:27
TrigConf::IRandomLoader
Definition: IRandomLoader.h:27