Skip to content
Snippets Groups Projects
Commit 72fafe69 authored by Carlo Varni's avatar Carlo Varni
Browse files

namespaces

parent 3c29eeb5
1 merge request!70023Do not create views at offline level but only RoIs
Showing
with 39 additions and 9 deletions
......@@ -4,6 +4,8 @@
#include "src/CaloBasedRoICreatorTool.h"
namespace ActsTrk {
CaloBasedRoICreatorTool::CaloBasedRoICreatorTool(const std::string& type,
const std::string& name,
const IInterface* parent)
......@@ -66,3 +68,5 @@ StatusCode CaloBasedRoICreatorTool::defineRegionsOfInterest(const EventContext&
ATH_MSG_DEBUG("Created composite RoI from Calo with " << collectionRoI.back()->size() << " RoIs");
return StatusCode::SUCCESS;
}
}
......@@ -11,9 +11,11 @@
#include "TrkCaloClusterROI/ROIPhiRZContainer.h"
#include "BeamSpotConditionsData/BeamSpotData.h"
namespace ActsTrk {
class
CaloBasedRoICreatorTool
: public extends<AthAlgTool, ::IRoICreatorTool> {
: public extends<AthAlgTool, ActsTrk::IRoICreatorTool> {
public:
CaloBasedRoICreatorTool(const std::string& type,
const std::string& name,
......@@ -44,4 +46,6 @@ private:
{this, "DeltaZCaloRoI", 300.};
};
}
#endif
......@@ -4,6 +4,8 @@
#include "EventViewCreatorAlg.h"
namespace ActsTrk {
EventViewCreatorAlg::EventViewCreatorAlg(const std::string& name,
ISvcLocator* pSvcLocator)
: AthReentrantAlgorithm(name, pSvcLocator)
......@@ -33,3 +35,4 @@ StatusCode EventViewCreatorAlg::execute(const EventContext& ctx) const
return StatusCode::SUCCESS;
}
}
......@@ -10,6 +10,8 @@
#include "TrigSteeringEvent/TrigRoiDescriptorCollection.h"
#include "StoreGate/WriteHandleKey.h"
namespace ActsTrk {
class EventViewCreatorAlg : public AthReentrantAlgorithm {
public:
EventViewCreatorAlg(const std::string& name, ISvcLocator* pSvcLocator);
......@@ -19,11 +21,12 @@ class EventViewCreatorAlg : public AthReentrantAlgorithm {
virtual StatusCode execute(const EventContext& ctx) const override;
private:
ToolHandle< IRoICreatorTool > m_roiTool {this, "RoICreatorTool", "",
ToolHandle< ActsTrk::IRoICreatorTool > m_roiTool {this, "RoICreatorTool", "",
"Tool for creating RoIs"};
SG::WriteHandleKey< TrigRoiDescriptorCollection > m_roiCollectionKey {this, "RoIs", "",
"The created RoI"};
};
}
#endif
......@@ -4,7 +4,8 @@
#include "src/FullScanRoICreatorTool.h"
namespace ActsTrk {
FullScanRoICreatorTool::FullScanRoICreatorTool(const std::string& type,
const std::string& name,
const IInterface* parent)
......@@ -18,3 +19,5 @@ StatusCode FullScanRoICreatorTool::defineRegionsOfInterest(const EventContext& /
collectionRoI.push_back( new TrigRoiDescriptor(true) );
return StatusCode::SUCCESS;
}
}
......@@ -8,7 +8,9 @@
#include "AthenaBaseComps/AthAlgTool.h"
#include "ActsToolInterfaces/IRoICreatorTool.h"
class FullScanRoICreatorTool : public extends<AthAlgTool, ::IRoICreatorTool> {
namespace ActsTrk {
class FullScanRoICreatorTool : public extends<AthAlgTool, ActsTrk::IRoICreatorTool> {
public:
FullScanRoICreatorTool(const std::string& type,
const std::string& name,
......@@ -20,4 +22,5 @@ class FullScanRoICreatorTool : public extends<AthAlgTool, ::IRoICreatorTool> {
TrigRoiDescriptorCollection& collectionRoI) const override;
};
}
#endif
......@@ -4,6 +4,8 @@
#include "src/TestRoICreatorTool.h"
namespace ActsTrk {
TestRoICreatorTool::TestRoICreatorTool(const std::string& type,
const std::string& name,
const IInterface* parent)
......@@ -92,3 +94,5 @@ StatusCode TestRoICreatorTool::defineRegionsOfInterest(const EventContext& /*ctx
return StatusCode::SUCCESS;
}
}
......@@ -8,8 +8,10 @@
#include "AthenaBaseComps/AthAlgTool.h"
#include "ActsToolInterfaces/IRoICreatorTool.h"
namespace ActsTrk {
class TestRoICreatorTool
: public extends<AthAlgTool, ::IRoICreatorTool> {
: public extends<AthAlgTool, ActsTrk::IRoICreatorTool> {
public:
TestRoICreatorTool(const std::string& type,
const std::string& name,
......@@ -35,4 +37,5 @@ class TestRoICreatorTool
Gaudi::Property< std::vector<double> > m_half_z_width_rois {this, "HalfZWidths", {}, "Half width of the RoI - z coordinate"};
};
}
#endif
......@@ -7,8 +7,8 @@
#include "src/CaloBasedRoICreatorTool.h"
#include "src/TestRoICreatorTool.h"
DECLARE_COMPONENT( ::EventViewCreatorAlg )
DECLARE_COMPONENT( ::FullScanRoICreatorTool )
DECLARE_COMPONENT( ::CaloBasedRoICreatorTool )
DECLARE_COMPONENT( ::TestRoICreatorTool )
DECLARE_COMPONENT( ActsTrk::EventViewCreatorAlg )
DECLARE_COMPONENT( ActsTrk::FullScanRoICreatorTool )
DECLARE_COMPONENT( ActsTrk::CaloBasedRoICreatorTool )
DECLARE_COMPONENT( ActsTrk::TestRoICreatorTool )
......@@ -11,6 +11,8 @@
#include <vector>
namespace ActsTrk {
class IRoICreatorTool
: virtual public IAlgTool {
public:
......@@ -22,4 +24,5 @@ class IRoICreatorTool
TrigRoiDescriptorCollection& collectionRoI) const = 0;
};
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment