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

Tool which manages the volume dumper action. More...

#include <VolumeDumperTool.h>

Inheritance diagram for G4UA::VolumeDumperTool:
Collaboration diagram for G4UA::VolumeDumperTool:

Public Member Functions

 VolumeDumperTool (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< VolumeDumpermakeAndFillAction (G4AtlasUserActions &) override final
 creates the action instances More...
 

Protected Attributes

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

Detailed Description

Tool which manages the volume dumper action.

Author
Miha Muskinja

Definition at line 26 of file VolumeDumperTool.h.

Constructor & Destructor Documentation

◆ VolumeDumperTool()

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

Standard constructor.

Definition at line 13 of file VolumeDumperTool.cxx.

14  :
15  UserActionToolBase<VolumeDumper>(type, name, parent)
16 {
17 }

Member Function Documentation

◆ fillUserAction()

virtual StatusCode G4UA::UserActionToolBase< VolumeDumper >::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< VolumeDumper > G4UA::VolumeDumperTool::makeAndFillAction ( G4AtlasUserActions actionList)
finaloverrideprotectedvirtual

creates the action instances

Implements G4UA::UserActionToolBase< VolumeDumper >.

Definition at line 23 of file VolumeDumperTool.cxx.

24 {
25  ATH_MSG_DEBUG("Constructing a VolumeDumper action");
26  auto action = std::make_unique<VolumeDumper>();
27  actionList.eventActions.push_back( action.get() );
28  return action;
29 }

Member Data Documentation

◆ m_actions

Thread-specific storage of the user action.

Definition at line 63 of file UserActionToolBase.h.


The documentation for this class was generated from the following files:
G4UA::ThreadSpecificUserAction::set
void set(std::unique_ptr< ActionType > action)
Assign the object of the current thread.
Definition: ThreadSpecificUserAction.h:61
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< VolumeDumper >::m_actions
ThreadSpecificUserAction< VolumeDumper > 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< VolumeDumper >::makeAndFillAction
virtual std::unique_ptr< VolumeDumper > 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