ATLAS Offline Software
Loading...
Searching...
No Matches
McAodValidationAlg.h
Go to the documentation of this file.
1
2
3/*
4 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
5*/
6
7// McAodValidationAlg.h
8// Header file for class McAodValidationAlg
9// Author: S.Binet<binet@cern.ch>
11#ifndef MCPARTICLEALGS_MCAODVALIDATIONALG_H
12#define MCPARTICLEALGS_MCAODVALIDATIONALG_H
13
14// FrameWork includes
16#include "GaudiKernel/ToolHandle.h" //for ToolHandleArray
17
18// STL includes
19#include <string>
20
21// Forward declaration
23
25{
26
28 // Public methods:
30 public:
31
33 McAodValidationAlg( const std::string& name, ISvcLocator* pSvcLocator );
34
36 virtual ~McAodValidationAlg();
37
38
39 // Athena algorithm's Hooks
40 virtual StatusCode initialize() override;
41 virtual StatusCode execute() override;
42 virtual StatusCode finalize() override;
43
45 // Protected methods:
47 protected:
48
51
53 // Protected data:
55 protected:
56
57 typedef ToolHandleArray<ITruthParticleValidationTool> IValidationTools_t;
61
62 // Containers
63
65 StringProperty m_truthParticlesName;
66
67 // switches
68
70 unsigned int m_seed;
71
72};
73
74#endif //> MCPARTICLEALGS_MCAODVALIDATIONALG_H
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
interface towards AlgTools which aim at validating the process of McAOD making.
virtual ~McAodValidationAlg()
Destructor:
unsigned int m_seed
Random generator seed.
IValidationTools_t m_valTools
Validation tools to be ran on the events.
McAodValidationAlg()
Default constructor:
ToolHandleArray< ITruthParticleValidationTool > IValidationTools_t
virtual StatusCode finalize() override
virtual StatusCode initialize() override
Athena Algorithm's Hooks.
virtual StatusCode execute() override
StringProperty m_truthParticlesName
Location of the TruthParticleContainer to read.
McAodValidationAlg(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters: