ATLAS Offline Software
eEmMultAlgTool.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "./eEmMultAlgTool.h"
6 
7 namespace GlobalSim {
8 
9  eEmMultAlgTool::eEmMultAlgTool(const std::string& type,
10  const std::string& name,
11  const IInterface* parent) :
12  base_class(type, name, parent) {
13  }
14 
15 
16  // Initialize function running before first event
18 
19  return StatusCode::SUCCESS;
20  }
21 
22 
23  // Main functional block running for each event
24  StatusCode eEmMultAlgTool::run(const EventContext& ) const {
25  return StatusCode::SUCCESS;
26  }
27 
28 
29 }
GlobalSim::eEmMultAlgTool::run
virtual StatusCode run(const EventContext &ctx) const override
Main functional block running for each event.
Definition: eEmMultAlgTool.cxx:24
GlobalSim::eEmMultAlgTool::eEmMultAlgTool
eEmMultAlgTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition: eEmMultAlgTool.cxx:9
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
eEmMultAlgTool.h
GlobalSim
AlgTool to obtain a selection of eFex RoIs read in from the event store.
Definition: dump.h:8
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
test_pyathena.parent
parent
Definition: test_pyathena.py:15
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
GlobalSim::eEmMultAlgTool::initialize
virtual StatusCode initialize() override
Initialize function running before first event.
Definition: eEmMultAlgTool.cxx:17