ATLAS Offline Software
Public Member Functions | Protected Member Functions | Protected Attributes | Private Attributes | List of all members
G4UA::GeantFollowerTool Class Reference

Tool which manages the GeantFollower action. More...

#include <GeantFollowerTool.h>

Inheritance diagram for G4UA::GeantFollowerTool:
Collaboration diagram for G4UA::GeantFollowerTool:

Public Member Functions

 GeantFollowerTool (const std::string &type, const std::string &name, const IInterface *parent)
 Standard constructor. More...
 
virtual StatusCode fillUserAction (G4AtlasUserActions &actionLists) override final
 Fill the user action lists. More...
 

Protected Member Functions

virtual std::unique_ptr< GeantFollowermakeAndFillAction (G4AtlasUserActions &) override final
 Create an action for this thread. More...
 

Protected Attributes

ThreadSpecificUserAction< GeantFollowerm_actions
 Thread-specific storage of the user action. More...
 

Private Attributes

GeantFollower::Config m_config
 Configuration parameters. More...
 

Detailed Description

Tool which manages the GeantFollower action.

Author
Andrea Di Simone

Definition at line 21 of file GeantFollowerTool.h.

Constructor & Destructor Documentation

◆ GeantFollowerTool()

G4UA::GeantFollowerTool::GeantFollowerTool ( const std::string &  type,
const std::string &  name,
const IInterface *  parent 
)

Standard constructor.

Definition at line 10 of file GeantFollowerTool.cxx.

13  : UserActionToolBase<GeantFollower>(type, name, parent)
14  {
15  declareProperty("HelperTool", m_config.helper);
16  }

Member Function Documentation

◆ fillUserAction()

virtual StatusCode G4UA::UserActionToolBase< GeantFollower >::fillUserAction ( G4AtlasUserActions actionLists)
inlinefinaloverridevirtualinherited

Fill the user action lists.

Definition at line 45 of file UserActionToolBase.h.

46  {
47  auto myAction = makeAndFillAction(actionLists);
48  if(myAction == nullptr) {
49  ATH_MSG_ERROR( "Failed to construct user action in " << name() );
50  return StatusCode::FAILURE;
51  }
52  m_actions.set( std::move(myAction) );
53  return StatusCode::SUCCESS;
54  }

◆ makeAndFillAction()

std::unique_ptr< GeantFollower > G4UA::GeantFollowerTool::makeAndFillAction ( G4AtlasUserActions actionList)
finaloverrideprotectedvirtual

Create an action for this thread.

Implements G4UA::UserActionToolBase< GeantFollower >.

Definition at line 19 of file GeantFollowerTool.cxx.

20  {
21  ATH_MSG_DEBUG("Constructing a GeantFollower action");
22  auto action = std::make_unique<GeantFollower>(m_config);
23  actionList.runActions.push_back( action.get() );
24  actionList.eventActions.push_back( action.get() );
25  actionList.steppingActions.push_back( action.get() );
26  return action;
27  }

Member Data Documentation

◆ m_actions

Thread-specific storage of the user action.

Definition at line 63 of file UserActionToolBase.h.

◆ m_config

GeantFollower::Config G4UA::GeantFollowerTool::m_config
private

Configuration parameters.

Definition at line 33 of file GeantFollowerTool.h.


The documentation for this class was generated from the following files:
G4UA::GeantFollower::Config::helper
ToolHandle< Trk::IGeantFollowerHelper > helper
FIXME: Public tool handle. See ATLASSIM-3561.
Definition: GeantFollower.h:41
G4UA::ThreadSpecificUserAction::set
void set(std::unique_ptr< ActionType > action)
Assign the object of the current thread.
Definition: ThreadSpecificUserAction.h:61
G4UA::GeantFollowerTool::m_config
GeantFollower::Config m_config
Configuration parameters.
Definition: GeantFollowerTool.h:33
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
G4UA::UserActionToolBase< GeantFollower >::m_actions
ThreadSpecificUserAction< GeantFollower > m_actions
Thread-specific storage of the user action.
Definition: UserActionToolBase.h:63
test_pyathena.parent
parent
Definition: test_pyathena.py:15
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
G4UA::UserActionToolBase< GeantFollower >::makeAndFillAction
virtual std::unique_ptr< GeantFollower > makeAndFillAction(G4AtlasUserActions &actionLists)=0
Make the action and push onto the lists.
python.CaloScaleNoiseConfig.action
action
Definition: CaloScaleNoiseConfig.py:77
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
declareProperty
#define declareProperty(n, p, h)
Definition: BaseFakeBkgTool.cxx:15