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

Tool which manages the RadLenNtuple action. More...

#include <RadLenNtupleTool.h>

Inheritance diagram for G4UA::RadLenNtupleTool:
Collaboration diagram for G4UA::RadLenNtupleTool:

Public Member Functions

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

Protected Member Functions

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

Protected Attributes

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

Private Attributes

RadLenNtuple::Config m_config
 Configuration parameters. More...
 
Gaudi::Property< std::string > m_mcEventCollName {this, "McEventCollName", "GEN_EVENT"}
 

Detailed Description

Tool which manages the RadLenNtuple action.

Create the RadLenNtuple for each worker thread

Author
Andrea Di Simone

Definition at line 26 of file RadLenNtupleTool.h.

Constructor & Destructor Documentation

◆ RadLenNtupleTool()

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

Standard constructor.

Member Function Documentation

◆ fillUserAction()

virtual StatusCode G4UA::UserActionToolBase< RadLenNtuple >::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  }

◆ initialize()

StatusCode G4UA::RadLenNtupleTool::initialize ( )
finaloverride

Framework methods.

◆ makeAndFillAction()

virtual std::unique_ptr<RadLenNtuple> G4UA::RadLenNtupleTool::makeAndFillAction ( G4AtlasUserActions )
finaloverrideprotectedvirtual

Create action for this thread.

Implements G4UA::UserActionToolBase< RadLenNtuple >.

Member Data Documentation

◆ m_actions

Thread-specific storage of the user action.

Definition at line 63 of file UserActionToolBase.h.

◆ m_config

RadLenNtuple::Config G4UA::RadLenNtupleTool::m_config
private

Configuration parameters.

Definition at line 46 of file RadLenNtupleTool.h.

◆ m_mcEventCollName

Gaudi::Property<std::string> G4UA::RadLenNtupleTool::m_mcEventCollName {this, "McEventCollName", "GEN_EVENT"}
private

Definition at line 47 of file RadLenNtupleTool.h.


The documentation for this class was generated from the following file:
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
G4UA::UserActionToolBase< RadLenNtuple >::m_actions
ThreadSpecificUserAction< RadLenNtuple > m_actions
Thread-specific storage of the user action.
Definition: UserActionToolBase.h:63
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
G4UA::UserActionToolBase< RadLenNtuple >::makeAndFillAction
virtual std::unique_ptr< RadLenNtuple > makeAndFillAction(G4AtlasUserActions &actionLists)=0
Make the action and push onto the lists.