ATLAS Offline Software
Loading...
Searching...
No Matches
GeneratorInfoSvc.h
Go to the documentation of this file.
1// Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2
3#ifndef GENERATORCONFIG_GENERATORINFOSVC_H
4#define GENERATORCONFIG_GENERATORINFOSVC_H
5
7#include "Gaudi/Property.h"
8#include <string>
9#include <vector>
10
25 public:
31 GeneratorInfoSvc(const std::string& name, ISvcLocator* svcLoc);
32
38 virtual StatusCode initialize() override;
39
40 protected:
47 StringArrayProperty m_generators{this, "Generators", {}, "List of generators run", "OrderedSet<std::string>"};
51 StringProperty m_tune{this, "Tune", "", "Tune used"};
52};
53
54#endif
StringArrayProperty m_generators
List of generators that were run.
virtual StatusCode initialize() override
Initialize the service.
StringProperty m_tune
Generator tune used for event generation.
GeneratorInfoSvc(const std::string &name, ISvcLocator *svcLoc)
Standard service constructor.