ATLAS Offline Software
Public Member Functions | Protected Member Functions | Protected Attributes | Private Types | Private Member Functions | Private Attributes | List of all members
DataPreparationPipeline Class Reference

This is the class for the data preparation pipeline. More...

#include <DataPreparationPipeline.h>

Inheritance diagram for DataPreparationPipeline:
Collaboration diagram for DataPreparationPipeline:

Public Member Functions

StatusCode initialize () override final
 Detect the OpenCL devices and prepare OpenCL context. More...
 
StatusCode execute (const EventContext &ctx) const override final
 Should be overriden by derived classes to perform meaningful work. More...
 
StatusCode setupBuffers ()
 
StatusCode setupKernelArgs ()
 
StatusCode loadProgram (const std::string &xclbin)
 Find the xclbin file and load it into the OpenCL program object. More...
 
StatusCode precheck (std::vector< Gaudi::Property< std::string >> inputs) const
 Check if the the desired Gaudi properties are set. More...
 
 AthReentrantAlgorithm (const std::string &name, ISvcLocator *pSvcLocator)
 Constructor with parameters: More...
 
virtual StatusCode sysInitialize () override
 Override sysInitialize. More...
 
virtual bool isClonable () const override
 Specify if the algorithm is clonable. More...
 
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant. More...
 
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm. More...
 
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies. More...
 
virtual bool filterPassed (const EventContext &ctx) const
 
virtual void setFilterPassed (bool state, const EventContext &ctx) const
 
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc. More...
 
const ServiceHandle< StoreGateSvc > & evtStore () const
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc. More...
 
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc. More...
 
virtual StatusCode sysStart () override
 Handle START transition. More...
 
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles. More...
 
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles. More...
 
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T > &t)
 
Gaudi::Details::PropertyBase * declareProperty (const std::string &name, SG::VarHandleKey &hndl, const std::string &doc, const SG::VarHandleKeyType &)
 Declare a new Gaudi property. More...
 
Gaudi::Details::PropertyBase * declareProperty (const std::string &name, SG::VarHandleBase &hndl, const std::string &doc, const SG::VarHandleType &)
 Declare a new Gaudi property. More...
 
Gaudi::Details::PropertyBase * declareProperty (const std::string &name, SG::VarHandleKeyArray &hndArr, const std::string &doc, const SG::VarHandleKeyArrayType &)
 
Gaudi::Details::PropertyBase * declareProperty (const std::string &name, T &property, const std::string &doc, const SG::NotHandleType &)
 Declare a new Gaudi property. More...
 
Gaudi::Details::PropertyBase * declareProperty (const std::string &name, T &property, const std::string &doc="none")
 Declare a new Gaudi property. More...
 
void updateVHKA (Gaudi::Details::PropertyBase &)
 
MsgStream & msg () const
 
MsgStream & msg (const MSG::Level lvl) const
 
bool msgLvl (const MSG::Level lvl) const
 

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution More...
 
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
 
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed. More...
 

Protected Attributes

cl::Device m_accelerator
 Device object for the accelerator card. More...
 
cl::Context m_context
 Context object for the application. More...
 
cl::Program m_program
 Program object containing the kernel. More...
 

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t
 

Private Member Functions

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey> More...
 
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyArrayType &)
 specialization for handling Gaudi::Property<SG::VarHandleKeyArray> More...
 
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleType &)
 specialization for handling Gaudi::Property<SG::VarHandleBase> More...
 
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T > &t, const SG::NotHandleType &)
 specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray> More...
 

Private Attributes

cl::Kernel m_pixelClusteringKernel
 Kernel for pixel clustering. More...
 
cl::Kernel m_spacepointKernel
 Kernel for spacepoint. More...
 
cl::Buffer m_pxlClusteringInBuff
 Buffer for pixel clustering input. More...
 
cl::Buffer m_pxlClusteringOutBuff
 Buffer for pixel clustering output. More...
 
cl::Buffer m_spacepointInBuff
 Buffer for spacepoint input. More...
 
cl::Buffer m_spacepointOutBuff
 Buffer for spacepoint output. More...
 
Gaudi::Property< std::string > m_xclbin
 Path and name of the xclbin file. More...
 
Gaudi::Property< std::string > m_passThroughKernelName
 Pass through kernel name. More...
 
Gaudi::Property< std::string > m_pixelClusteringKernelName
 Pixle clustering kernel name. More...
 
Gaudi::Property< std::string > m_spacepointKernelName
 Spacepoint kernel name. More...
 
Gaudi::Property< std::string > m_pixelClusterTVPath
 Pixel cluster test vector. More...
 
Gaudi::Property< std::string > m_pixelClusterRefTVPath
 Pixel cluster reference test vector. More...
 
Gaudi::Property< std::string > m_spacepointTVPath
 Spacepoint test vector. More...
 
Gaudi::Property< std::string > m_spacepointRefTVPath
 Spacepoint reference test vector. More...
 
Gaudi::Property< bool > m_usePassThrough
 Use the pass through tool instead of data prep pipeline. More...
 
Gaudi::Property< bool > m_useTV {this, "UseTV", false, "Use test vector"}
 Use test vector. More...
 
ToolHandle< xAODContainerMakerm_xAODContainerMaker
 Tool handle for xAODContainerMaker. More...
 
ToolHandle< PassThroughToolm_passThroughTool
 Tool handle for PassThroughTool. More...
 
ToolHandle< TestVectorToolm_testVectorTool
 Tool handle for TestVectorTool. More...
 
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks. More...
 
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default) More...
 
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default) More...
 
std::vector< SG::VarHandleKeyArray * > m_vhka
 
bool m_varHandleArraysDeclared
 

Detailed Description

This is the class for the data preparation pipeline.

The output of this pipeline are the xAOD::StripCluster(Container) and xAOD::PixelCluster(Container). These containers are to be used in other CPU-based algorithms.

Definition at line 36 of file DataPreparationPipeline.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Member Function Documentation

◆ AthReentrantAlgorithm()

AthReentrantAlgorithm::AthReentrantAlgorithm
inherited

Constructor with parameters:

Definition at line 90 of file AthReentrantAlgorithm.cxx.

22  :
24 {
25 
26  // Set up to run AthAlgorithmDHUpdate in sysInitialize before
27  // merging depedency lists. This extends the output dependency
28  // list with any symlinks implied by inheritance relations.
29  m_updateDataHandles =
30  std::make_unique<AthenaBaseComps::AthAlgorithmDHUpdate>
32  std::move (m_updateDataHandles));
33 }

◆ cardinality()

unsigned int AthReentrantAlgorithm::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Override this to return 0 for reentrant algorithms.

Definition at line 55 of file AthReentrantAlgorithm.cxx.

56 {
57  return 0;
58 }

◆ declareGaudiProperty() [1/4]

Gaudi::Details::PropertyBase& AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T > &  hndl,
const SG::VarHandleKeyArrayType  
)
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKeyArray>

Definition at line 170 of file AthCommonDataStore.h.

172  {
173  return *AthCommonDataStore<PBASE>::declareProperty(hndl.name(),
174  hndl.value(),
175  hndl.documentation());
176 
177  }

◆ declareGaudiProperty() [2/4]

Gaudi::Details::PropertyBase& AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T > &  hndl,
const SG::VarHandleKeyType  
)
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158  {
159  return *AthCommonDataStore<PBASE>::declareProperty(hndl.name(),
160  hndl.value(),
161  hndl.documentation());
162 
163  }

◆ declareGaudiProperty() [3/4]

Gaudi::Details::PropertyBase& AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T > &  hndl,
const SG::VarHandleType  
)
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleBase>

Definition at line 184 of file AthCommonDataStore.h.

186  {
187  return *AthCommonDataStore<PBASE>::declareProperty(hndl.name(),
188  hndl.value(),
189  hndl.documentation());
190  }

◆ declareGaudiProperty() [4/4]

Gaudi::Details::PropertyBase& AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T > &  t,
const SG::NotHandleType  
)
inlineprivateinherited

specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray>

Definition at line 199 of file AthCommonDataStore.h.

200  {
201  return PBASE::declareProperty(t);
202  }

◆ declareProperty() [1/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( const std::string &  name,
SG::VarHandleBase hndl,
const std::string &  doc,
const SG::VarHandleType  
)
inlineinherited

Declare a new Gaudi property.

Parameters
nameName of the property.
hndlObject holding the property value.
docDocumentation string for the property.

This is the version for types that derive from SG::VarHandleBase. The property value object is put on the input and output lists as appropriate; then we forward to the base class.

Definition at line 245 of file AthCommonDataStore.h.

249  {
250  this->declare(hndl.vhKey());
251  hndl.vhKey().setOwner(this);
252 
253  return PBASE::declareProperty(name,hndl,doc);
254  }

◆ declareProperty() [2/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( const std::string &  name,
SG::VarHandleKey hndl,
const std::string &  doc,
const SG::VarHandleKeyType  
)
inlineinherited

Declare a new Gaudi property.

Parameters
nameName of the property.
hndlObject holding the property value.
docDocumentation string for the property.

This is the version for types that derive from SG::VarHandleKey. The property value object is put on the input and output lists as appropriate; then we forward to the base class.

Definition at line 221 of file AthCommonDataStore.h.

225  {
226  this->declare(hndl);
227  hndl.setOwner(this);
228 
229  return PBASE::declareProperty(name,hndl,doc);
230  }

◆ declareProperty() [3/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( const std::string &  name,
SG::VarHandleKeyArray hndArr,
const std::string &  doc,
const SG::VarHandleKeyArrayType  
)
inlineinherited

Definition at line 259 of file AthCommonDataStore.h.

263  {
264 
265  // std::ostringstream ost;
266  // ost << Algorithm::name() << " VHKA declareProp: " << name
267  // << " size: " << hndArr.keys().size()
268  // << " mode: " << hndArr.mode()
269  // << " vhka size: " << m_vhka.size()
270  // << "\n";
271  // debug() << ost.str() << endmsg;
272 
273  hndArr.setOwner(this);
274  m_vhka.push_back(&hndArr);
275 
276  Gaudi::Details::PropertyBase* p = PBASE::declareProperty(name, hndArr, doc);
277  if (p != 0) {
278  p->declareUpdateHandler(&AthCommonDataStore<PBASE>::updateVHKA, this);
279  } else {
280  ATH_MSG_ERROR("unable to call declareProperty on VarHandleKeyArray "
281  << name);
282  }
283 
284  return p;
285 
286  }

◆ declareProperty() [4/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( const std::string &  name,
T &  property,
const std::string &  doc,
const SG::NotHandleType  
)
inlineinherited

Declare a new Gaudi property.

Parameters
nameName of the property.
propertyObject holding the property value.
docDocumentation string for the property.

This is the generic version, for types that do not derive from SG::VarHandleKey. It just forwards to the base class version of declareProperty.

Definition at line 333 of file AthCommonDataStore.h.

337  {
338  return PBASE::declareProperty(name, property, doc);
339  }

◆ declareProperty() [5/6]

Gaudi::Details::PropertyBase* AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( const std::string &  name,
T &  property,
const std::string &  doc = "none" 
)
inlineinherited

Declare a new Gaudi property.

Parameters
nameName of the property.
propertyObject holding the property value.
docDocumentation string for the property.

This dispatches to either the generic declareProperty or the one for VarHandle/Key/KeyArray.

Definition at line 352 of file AthCommonDataStore.h.

355  {
356  typedef typename SG::HandleClassifier<T>::type htype;
357  return declareProperty (name, property, doc, htype());
358  }

◆ declareProperty() [6/6]

Gaudi::Details::PropertyBase& AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( Gaudi::Property< T > &  t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145  {
146  typedef typename SG::HandleClassifier<T>::type htype;
148  }

◆ detStore()

const ServiceHandle<StoreGateSvc>& AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

95 { return m_detStore; }

◆ evtStore() [1/2]

ServiceHandle<StoreGateSvc>& AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

85 { return m_evtStore; }

◆ evtStore() [2/2]

const ServiceHandle<StoreGateSvc>& AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::evtStore ( ) const
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 90 of file AthCommonDataStore.h.

90 { return m_evtStore; }

◆ execute()

StatusCode DataPreparationPipeline::execute ( const EventContext &  ctx) const
finaloverridevirtual

Should be overriden by derived classes to perform meaningful work.

Reimplemented from IntegrationBase.

Definition at line 66 of file DataPreparationPipeline.cxx.

67 {
68  if (m_usePassThrough)
69  {
72  std::unique_ptr<EFTrackingDataFormats::Metadata> metadata =
73  std::make_unique<EFTrackingDataFormats::Metadata>();
74 
75  ATH_CHECK(m_passThroughTool->runPassThrough(scAux, pxAux, metadata.get(), ctx));
76  ATH_CHECK(m_xAODContainerMaker->makeStripClusterContainer(scAux, metadata.get(), ctx));
77  ATH_CHECK(m_xAODContainerMaker->makePixelClusterContainer(pxAux, metadata.get(), ctx));
78 
79  return StatusCode::SUCCESS;
80  }
81 
82  // HW kernels to be added here in the future
83  ATH_MSG_INFO("Running the FPGA Data Preparation Pipeline");
84 
85  // Order of execution
86  // 1. Pixel/strip clustering
87  // 2. Pixel/strip L2G
88  // 3. Pixel/strip Spacepoint
89 
90  // Are we using TV or RDO?
91  if (m_useTV)
92  {
93  // Make queue of commands
94  cl::CommandQueue acc_queue(m_context, m_accelerator);
95 
96  ATH_MSG_INFO("Using test vectors");
97  EFTrackingFPGAIntegration::TVHolder pixelTV("PixelClustering");
98  ATH_CHECK(m_testVectorTool->prepareTV(m_pixelClusterTVPath, pixelTV.inputTV));
99  ATH_CHECK(m_testVectorTool->prepareTV(m_pixelClusterRefTVPath, pixelTV.refTV));
100 
101  std::vector<uint64_t> fpgaOutput(pixelTV.inputTV.size() * 2, 0);
102 
103  ATH_MSG_INFO("Running the pixel clustering kernel");
104  acc_queue.enqueueWriteBuffer(m_pxlClusteringInBuff, CL_TRUE, 0, sizeof(uint64_t) * pixelTV.inputTV.size(), pixelTV.inputTV.data(), NULL, NULL);
105  acc_queue.enqueueTask(m_pixelClusteringKernel);
106  acc_queue.finish();
107 
108  // The current implementation of the kernel Read/Write the same buffer
109  // So the line below reads the inbuff insatead of outbuff
110  acc_queue.enqueueReadBuffer(m_pxlClusteringInBuff, CL_TRUE, 0, sizeof(uint64_t) * fpgaOutput.size(), fpgaOutput.data(), NULL, NULL);
111 
112  // compare the output with the reference
113  ATH_CHECK(m_testVectorTool->compare(pixelTV, fpgaOutput));
114 
115  // do the same for spacepoint
116  EFTrackingFPGAIntegration::TVHolder spacepointTV("Spacepoint");
117  ATH_CHECK(m_testVectorTool->prepareTV(m_spacepointTVPath, spacepointTV.inputTV));
118  ATH_CHECK(m_testVectorTool->prepareTV(m_spacepointRefTVPath, spacepointTV.refTV));
119 
120  // reset the output vector
121  fpgaOutput = std::vector<uint64_t>(spacepointTV.inputTV.size() * 2, 0);
122 
123  ATH_MSG_INFO("Running the spacepoint kernel");
124  acc_queue.enqueueWriteBuffer(m_spacepointInBuff, CL_TRUE, 0, sizeof(uint64_t) * spacepointTV.inputTV.size(), spacepointTV.inputTV.data(), NULL, NULL);
125  acc_queue.enqueueTask(m_spacepointKernel);
126  acc_queue.finish();
127 
128  acc_queue.enqueueReadBuffer(m_spacepointInBuff, CL_TRUE, 0, sizeof(uint64_t) * fpgaOutput.size(), fpgaOutput.data(), NULL, NULL);
129 
130  // compare the output with the reference
131  ATH_CHECK(m_testVectorTool->compare(spacepointTV, fpgaOutput));
132  }
133  else
134  {
135  // Use FPGADataFormatTool to prepare input
136  ATH_MSG_INFO("Using RDOs for FPGA is not ready yet");
137  }
138 
139  return StatusCode::SUCCESS;
140 }

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase &  ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ extraOutputDeps()

const DataObjIDColl & AthReentrantAlgorithm::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 79 of file AthReentrantAlgorithm.cxx.

80 {
81  // If we didn't find any symlinks to add, just return the collection
82  // from the base class. Otherwise, return the extended collection.
83  if (!m_extendedExtraObjects.empty()) {
85  }
86  return Algorithm::extraOutputDeps();
87 }

◆ filterPassed()

virtual bool AthReentrantAlgorithm::filterPassed ( const EventContext &  ctx) const
inlinevirtualinherited

Definition at line 135 of file AthReentrantAlgorithm.h.

135  {
136  return execState( ctx ).filterPassed();
137  }

◆ initialize()

StatusCode DataPreparationPipeline::initialize ( )
finaloverridevirtual

Detect the OpenCL devices and prepare OpenCL context.

This should always be called by derived classes when running on the FPGA accelerator.

Reimplemented from IntegrationBase.

Definition at line 17 of file DataPreparationPipeline.cxx.

18 {
19  // Check if we are using the pass through tool
20  // If yes, check if we are running in software mode. sw mode doesn't require an accelerator
21  if (m_usePassThrough)
22  {
23  ATH_CHECK(m_passThroughTool.retrieve());
24  if (m_passThroughTool->runSW())
25  {
26  ATH_MSG_INFO("Running software pass through");
27  }
28  else
29  {
30  ATH_MSG_INFO("Running hardware pass through");
34  }
35  }
36  // We are doing the Data Preparation Pipeline on FPGA, so we need to setup hardware
37  else
38  {
39  ATH_MSG_INFO("Running the DataPrep pipeline on the FPGA accelerator");
43 
44  // Kernel objects shouldn't change so they can be initialized here
46  m_spacepointKernel = cl::Kernel(m_program, m_spacepointKernelName.value().data());
47 
50 
51  if (m_useTV)
52  {
57  ATH_CHECK(m_testVectorTool.retrieve());
58  }
59  }
60 
61  ATH_CHECK(m_xAODContainerMaker.retrieve());
62 
63  return StatusCode::SUCCESS;
64 }

◆ inputHandles()

virtual std::vector<Gaudi::DataHandle*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ isClonable()

bool AthReentrantAlgorithm::isClonable ( ) const
overridevirtualinherited

◆ loadProgram()

StatusCode IntegrationBase::loadProgram ( const std::string &  xclbin)
inherited

Find the xclbin file and load it into the OpenCL program object.

Definition at line 82 of file IntegrationBase.cxx.

83 {
84  // Open binary object in binary mode
85  std::ifstream bin_file(xclbin, std::ios_base::binary);
86  if (!bin_file)
87  {
88  ATH_MSG_ERROR("Couldn't find the xclbin file.");
89  return StatusCode::FAILURE;
90  }
91  // Get the size of the binary file
92  bin_file.seekg(0, bin_file.end);
93  unsigned bin_size = bin_file.tellg();
94  // Reset the reference point back to the beginning
95  bin_file.seekg(0, bin_file.beg);
96  // Create a new pointer for the binary buffer and get the set a pointer to the binary buffer
97  std::vector<char> buf(bin_size);
98  bin_file.read(buf.data(), bin_size);
99 
100  // Create binary object and program object
101  cl_int err = 0;
102  std::vector<cl_int> binaryStatus;
103  cl::Program::Binaries bins{{buf.data(), bin_size}};
104  m_program = cl::Program(m_context, {m_accelerator}, bins, &binaryStatus, &err);
105 
106  bin_file.close();
107 
108  if (err == CL_SUCCESS && binaryStatus.at(0) == CL_SUCCESS)
109  {
110  ATH_MSG_INFO("Successfully loaded xclbin file into " << m_accelerator.getInfo<CL_DEVICE_NAME>());
111  }
112  else
113  {
114  ATH_MSG_ERROR("Error loading xclbin file. Error code: " << err);
115  return StatusCode::FAILURE;
116  }
117 
118  return StatusCode::SUCCESS;
119 }

◆ msg() [1/2]

MsgStream& AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24  {
25  return this->msgStream();
26  }

◆ msg() [2/2]

MsgStream& AthCommonMsg< Gaudi::Algorithm >::msg ( const MSG::Level  lvl) const
inlineinherited

Definition at line 27 of file AthCommonMsg.h.

27  {
28  return this->msgStream(lvl);
29  }

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::msgLvl ( const MSG::Level  lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30  {
31  return this->msgLevel(lvl);
32  }

◆ outputHandles()

virtual std::vector<Gaudi::DataHandle*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ precheck()

StatusCode IntegrationBase::precheck ( std::vector< Gaudi::Property< std::string >>  inputs) const
inherited

Check if the the desired Gaudi properties are set.

Definition at line 121 of file IntegrationBase.cxx.

122 {
123  for(auto item : inputs)
124  {
125  if(item.empty())
126  {
127  ATH_MSG_FATAL(item.documentation()<<" is empty. Please set it to a valid value");
128  return StatusCode::FAILURE;
129  }
130  }
131 
132  return StatusCode::SUCCESS;
133 }

◆ renounce()

std::enable_if_t<std::is_void_v<std::result_of_t<decltype(&T::renounce)(T)> > && !std::is_base_of_v<SG::VarHandleKeyArray, T> && std::is_base_of_v<Gaudi::DataHandle, T>, void> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounce ( T &  h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381  {
382  h.renounce();
383  PBASE::renounce (h);
384  }

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364  {
365  handlesArray.renounce();
366  }

◆ setFilterPassed()

virtual void AthReentrantAlgorithm::setFilterPassed ( bool  state,
const EventContext &  ctx 
) const
inlinevirtualinherited

Definition at line 139 of file AthReentrantAlgorithm.h.

139  {
140  execState( ctx ).setFilterPassed( state );
141  }

◆ setupBuffers()

StatusCode DataPreparationPipeline::setupBuffers ( )

Definition at line 142 of file DataPreparationPipeline.cxx.

143 {
144  // Allocate buffers on accelerator
145  cl_int err = 0;
146 
147  // Set the size of the buffer to be 100000, should be further discussed!
148  unsigned int size = 100000;
149  m_pxlClusteringInBuff = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(uint64_t) * size, NULL, &err);
150  if (err != CL_SUCCESS)
151  {
152  ATH_MSG_ERROR("Failed to allocate intput buffer for pixel clustering");
153  return StatusCode::FAILURE;
154  }
155 
156  m_pxlClusteringOutBuff = cl::Buffer(m_context, CL_MEM_READ_WRITE, sizeof(uint64_t) * size, NULL, &err);
157  if (err != CL_SUCCESS)
158  {
159  ATH_MSG_ERROR("Failed to allocate output buffer for pixel clustering");
160  return StatusCode::FAILURE;
161  }
162 
163  m_spacepointInBuff = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(uint64_t) * size, NULL, &err);
164  if (err != CL_SUCCESS)
165  {
166  ATH_MSG_ERROR("Failed to allocate input buffer for spacepoint");
167  return StatusCode::FAILURE;
168  }
169 
170  m_spacepointOutBuff = cl::Buffer(m_context, CL_MEM_READ_WRITE, sizeof(uint64_t) * size, NULL, &err);
171  if (err != CL_SUCCESS)
172  {
173  ATH_MSG_ERROR("Failed to allocate output buffer for spacepoint");
174  return StatusCode::FAILURE;
175  }
176 
177  return StatusCode::SUCCESS;
178 }

◆ setupKernelArgs()

StatusCode DataPreparationPipeline::setupKernelArgs ( )

Definition at line 180 of file DataPreparationPipeline.cxx.

181 {
182  // Prepare kernel
183  m_pixelClusteringKernel.setArg<uint>(0, 0);
184  m_pixelClusteringKernel.setArg<cl::Buffer>(1, m_pxlClusteringInBuff);
185  m_pixelClusteringKernel.setArg<cl::Buffer>(2, m_pxlClusteringOutBuff);
186 
187  m_spacepointKernel.setArg<cl::Buffer>(0, m_spacepointInBuff);
188  m_spacepointKernel.setArg<cl::Buffer>(1, m_spacepointOutBuff);
189  // Hardcoded the size for now, shouldn't need the size eventually
190  m_spacepointKernel.setArg<uint>(2, 33);
191 
192  return StatusCode::SUCCESS;
193 }

◆ sysExecute()

StatusCode AthReentrantAlgorithm::sysExecute ( const EventContext &  ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 67 of file AthReentrantAlgorithm.cxx.

68 {
69  return Gaudi::Algorithm::sysExecute (ctx);
70 }

◆ sysInitialize()

StatusCode AthReentrantAlgorithm::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in InputMakerBase, and HypoBase.

Definition at line 96 of file AthReentrantAlgorithm.cxx.

96  {
98 
99  if (sc.isFailure()) {
100  return sc;
101  }
102 
103  ServiceHandle<ICondSvc> cs("CondSvc",name());
104  for (auto h : outputHandles()) {
105  if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
106  // do this inside the loop so we don't create the CondSvc until needed
107  if ( cs.retrieve().isFailure() ) {
108  ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
109  return StatusCode::SUCCESS;
110  }
111  if (cs->regHandle(this,*h).isFailure()) {
112  sc = StatusCode::FAILURE;
113  ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
114  << " with CondSvc");
115  }
116  }
117  }
118  return sc;
119 }

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase &  )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308  {
309  // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310  // << " size: " << m_vhka.size() << endmsg;
311  for (auto &a : m_vhka) {
312  std::vector<SG::VarHandleKey*> keys = a->keys();
313  for (auto k : keys) {
314  k->setOwner(this);
315  }
316  }
317  }

Member Data Documentation

◆ m_accelerator

cl::Device IntegrationBase::m_accelerator
protectedinherited

Device object for the accelerator card.

Definition at line 66 of file IntegrationBase.h.

◆ m_context

cl::Context IntegrationBase::m_context
protectedinherited

Context object for the application.

Definition at line 67 of file IntegrationBase.h.

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthReentrantAlgorithm::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 153 of file AthReentrantAlgorithm.h.

◆ m_passThroughKernelName

Gaudi::Property<std::string> DataPreparationPipeline::m_passThroughKernelName
private
Initial value:
{this,
"PassThroughKernelName", "",
"Pass through kernel name"}

Pass through kernel name.

Definition at line 61 of file DataPreparationPipeline.h.

◆ m_passThroughTool

ToolHandle<PassThroughTool> DataPreparationPipeline::m_passThroughTool
private
Initial value:
{
this, "PassThroughTool", "PassThroughTool",
"The pass through tool"}

Tool handle for PassThroughTool.

Definition at line 93 of file DataPreparationPipeline.h.

◆ m_pixelClusteringKernel

cl::Kernel DataPreparationPipeline::m_pixelClusteringKernel
private

Kernel for pixel clustering.

Definition at line 48 of file DataPreparationPipeline.h.

◆ m_pixelClusteringKernelName

Gaudi::Property<std::string> DataPreparationPipeline::m_pixelClusteringKernelName
private
Initial value:
{this,
"PixelClusteringKernelName", "",
"Pixel Clustering kernel name"}

Pixle clustering kernel name.

Definition at line 64 of file DataPreparationPipeline.h.

◆ m_pixelClusterRefTVPath

Gaudi::Property<std::string> DataPreparationPipeline::m_pixelClusterRefTVPath
private
Initial value:
{this, "PixelClusterRefTV", "",
"Path to pixel cluster reference test vector"}

Pixel cluster reference test vector.

Definition at line 74 of file DataPreparationPipeline.h.

◆ m_pixelClusterTVPath

Gaudi::Property<std::string> DataPreparationPipeline::m_pixelClusterTVPath
private
Initial value:
{this, "PixelClusterTV", "",
"Path to pixel cluster test vector"}

Pixel cluster test vector.

Definition at line 72 of file DataPreparationPipeline.h.

◆ m_program

cl::Program IntegrationBase::m_program
protectedinherited

Program object containing the kernel.

Definition at line 68 of file IntegrationBase.h.

◆ m_pxlClusteringInBuff

cl::Buffer DataPreparationPipeline::m_pxlClusteringInBuff
private

Buffer for pixel clustering input.

Definition at line 51 of file DataPreparationPipeline.h.

◆ m_pxlClusteringOutBuff

cl::Buffer DataPreparationPipeline::m_pxlClusteringOutBuff
private

Buffer for pixel clustering output.

Definition at line 52 of file DataPreparationPipeline.h.

◆ m_spacepointInBuff

cl::Buffer DataPreparationPipeline::m_spacepointInBuff
private

Buffer for spacepoint input.

Definition at line 54 of file DataPreparationPipeline.h.

◆ m_spacepointKernel

cl::Kernel DataPreparationPipeline::m_spacepointKernel
private

Kernel for spacepoint.

Definition at line 49 of file DataPreparationPipeline.h.

◆ m_spacepointKernelName

Gaudi::Property<std::string> DataPreparationPipeline::m_spacepointKernelName
private
Initial value:
{this,
"SpacepointKernelName", "",
"Spacepoint kernel name"}

Spacepoint kernel name.

Definition at line 67 of file DataPreparationPipeline.h.

◆ m_spacepointOutBuff

cl::Buffer DataPreparationPipeline::m_spacepointOutBuff
private

Buffer for spacepoint output.

Definition at line 55 of file DataPreparationPipeline.h.

◆ m_spacepointRefTVPath

Gaudi::Property<std::string> DataPreparationPipeline::m_spacepointRefTVPath
private
Initial value:
{this, "SpacepointRefTV", "",
"Path to spacepoint reference test vector"}

Spacepoint reference test vector.

Definition at line 79 of file DataPreparationPipeline.h.

◆ m_spacepointTVPath

Gaudi::Property<std::string> DataPreparationPipeline::m_spacepointTVPath
private
Initial value:
{this, "SpacepointTV", "",
"Path to spacepoint test vector"}

Spacepoint test vector.

Definition at line 77 of file DataPreparationPipeline.h.

◆ m_testVectorTool

ToolHandle<TestVectorTool> DataPreparationPipeline::m_testVectorTool
private
Initial value:
{
this, "TestVectorTool", "TestVectorTool",
"Tool to prepare test vector"}

Tool handle for TestVectorTool.

Definition at line 97 of file DataPreparationPipeline.h.

◆ m_usePassThrough

Gaudi::Property<bool> DataPreparationPipeline::m_usePassThrough
private
Initial value:
{
this, "RunPassThrough", false,
"Use the passthrough tool instead of data prep pipeline"}

Use the pass through tool instead of data prep pipeline.

It can be either sw or hw, setting in the tool

Definition at line 83 of file DataPreparationPipeline.h.

◆ m_useTV

Gaudi::Property<bool> DataPreparationPipeline::m_useTV {this, "UseTV", false, "Use test vector"}
private

Use test vector.

Definition at line 86 of file DataPreparationPipeline.h.

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.

◆ m_xAODContainerMaker

ToolHandle<xAODContainerMaker> DataPreparationPipeline::m_xAODContainerMaker
private
Initial value:
{
this, "xAODMaker", "xAODContainerMaker",
"tool to make cluster"}

Tool handle for xAODContainerMaker.

Definition at line 89 of file DataPreparationPipeline.h.

◆ m_xclbin

Gaudi::Property<std::string> DataPreparationPipeline::m_xclbin
private
Initial value:
{
this, "xclbin", "",
"xclbin path and name"}

Path and name of the xclbin file.

Definition at line 58 of file DataPreparationPipeline.h.


The documentation for this class was generated from the following files:
DataPreparationPipeline::m_pixelClusterRefTVPath
Gaudi::Property< std::string > m_pixelClusterRefTVPath
Pixel cluster reference test vector.
Definition: DataPreparationPipeline.h:74
EFTrackingDataFormats::StripClusterAuxInput
The StripClusterAuxInput struct is used to simplify the creaction of the xAOD::StripClusterContainer.
Definition: EFTrackingDataFormats.h:186
IntegrationBase::m_accelerator
cl::Device m_accelerator
Device object for the accelerator card.
Definition: IntegrationBase.h:66
IntegrationBase::initialize
virtual StatusCode initialize() override
Detect the OpenCL devices and prepare OpenCL context.
Definition: IntegrationBase.cxx:14
DataPreparationPipeline::m_pixelClusteringKernelName
Gaudi::Property< std::string > m_pixelClusteringKernelName
Pixle clustering kernel name.
Definition: DataPreparationPipeline.h:64
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
AthCommonDataStore::declareProperty
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
Definition: AthCommonDataStore.h:145
EFTrackingDataFormats::PixelClusterAuxInput
The PixelClusterAuxInput struct is used to simplify the creaction of the xAOD::PixelClusterContainer.
Definition: EFTrackingDataFormats.h:200
DataPreparationPipeline::m_spacepointOutBuff
cl::Buffer m_spacepointOutBuff
Buffer for spacepoint output.
Definition: DataPreparationPipeline.h:55
IntegrationBase::m_context
cl::Context m_context
Context object for the application.
Definition: IntegrationBase.h:67
AthCommonDataStore::renounce
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)
Definition: AthCommonDataStore.h:380
AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
Definition: AthCommonDataStore.h:390
AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_vhka
std::vector< SG::VarHandleKeyArray * > m_vhka
Definition: AthCommonDataStore.h:398
DataPreparationPipeline::m_pixelClusterTVPath
Gaudi::Property< std::string > m_pixelClusterTVPath
Pixel cluster test vector.
Definition: DataPreparationPipeline.h:72
DataPreparationPipeline::m_pxlClusteringOutBuff
cl::Buffer m_pxlClusteringOutBuff
Buffer for pixel clustering output.
Definition: DataPreparationPipeline.h:52
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
DataPreparationPipeline::m_spacepointTVPath
Gaudi::Property< std::string > m_spacepointTVPath
Spacepoint test vector.
Definition: DataPreparationPipeline.h:77
DataPreparationPipeline::m_spacepointRefTVPath
Gaudi::Property< std::string > m_spacepointRefTVPath
Spacepoint reference test vector.
Definition: DataPreparationPipeline.h:79
postInclude.inputs
inputs
Definition: postInclude.SortInput.py:15
AthenaPoolTestRead.sc
sc
Definition: AthenaPoolTestRead.py:27
SG::VarHandleKeyArray::setOwner
virtual void setOwner(IDataHandleHolder *o)=0
IDTPMcnv.htype
htype
Definition: IDTPMcnv.py:29
python.checkMetadata.metadata
metadata
Definition: checkMetadata.py:175
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
uint
unsigned int uint
Definition: LArOFPhaseFill.cxx:20
python.utils.AtlRunQueryDQUtils.p
p
Definition: AtlRunQueryDQUtils.py:210
AthCommonDataStore
Definition: AthCommonDataStore.h:52
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
DataPreparationPipeline::m_passThroughTool
ToolHandle< PassThroughTool > m_passThroughTool
Tool handle for PassThroughTool.
Definition: DataPreparationPipeline.h:93
dqt_zlumi_pandas.err
err
Definition: dqt_zlumi_pandas.py:182
AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::outputHandles
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
python.DecayParser.buf
buf
print ("=> [%s]"cmd)
Definition: DecayParser.py:27
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
DataPreparationPipeline::m_useTV
Gaudi::Property< bool > m_useTV
Use test vector.
Definition: DataPreparationPipeline.h:86
DataPreparationPipeline::m_spacepointKernel
cl::Kernel m_spacepointKernel
Kernel for spacepoint.
Definition: DataPreparationPipeline.h:49
xAOD::uint64_t
uint64_t
Definition: EventInfo_v1.cxx:123
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
EFTrackingFPGAIntegration::TVHolder
Definition: TestVectorTool.h:27
plotting.yearwise_luminosity_vs_mu.bins
bins
Definition: yearwise_luminosity_vs_mu.py:30
AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
Definition: AthCommonDataStore.h:393
DataPreparationPipeline::m_passThroughKernelName
Gaudi::Property< std::string > m_passThroughKernelName
Pass through kernel name.
Definition: DataPreparationPipeline.h:61
DataPreparationPipeline::m_xclbin
Gaudi::Property< std::string > m_xclbin
Path and name of the xclbin file.
Definition: DataPreparationPipeline.h:58
AthReentrantAlgorithm::m_extendedExtraObjects
DataObjIDColl m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
Definition: AthReentrantAlgorithm.h:153
IntegrationBase::loadProgram
StatusCode loadProgram(const std::string &xclbin)
Find the xclbin file and load it into the OpenCL program object.
Definition: IntegrationBase.cxx:82
SG::VarHandleKeyArray::renounce
virtual void renounce()=0
SG::HandleClassifier::type
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
Definition: HandleClassifier.h:54
IntegrationBase::precheck
StatusCode precheck(std::vector< Gaudi::Property< std::string >> inputs) const
Check if the the desired Gaudi properties are set.
Definition: IntegrationBase.cxx:121
merge_scale_histograms.doc
string doc
Definition: merge_scale_histograms.py:9
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:228
DataPreparationPipeline::m_spacepointKernelName
Gaudi::Property< std::string > m_spacepointKernelName
Spacepoint kernel name.
Definition: DataPreparationPipeline.h:67
AthReentrantAlgorithm::sysInitialize
virtual StatusCode sysInitialize() override
Override sysInitialize.
Definition: AthReentrantAlgorithm.cxx:96
item
Definition: ItemListSvc.h:43
DataPreparationPipeline::setupBuffers
StatusCode setupBuffers()
Definition: DataPreparationPipeline.cxx:142
DataPreparationPipeline::m_usePassThrough
Gaudi::Property< bool > m_usePassThrough
Use the pass through tool instead of data prep pipeline.
Definition: DataPreparationPipeline.h:83
DataPreparationPipeline::m_testVectorTool
ToolHandle< TestVectorTool > m_testVectorTool
Tool handle for TestVectorTool.
Definition: DataPreparationPipeline.h:97
DataPreparationPipeline::m_spacepointInBuff
cl::Buffer m_spacepointInBuff
Buffer for spacepoint input.
Definition: DataPreparationPipeline.h:54
a
TList * a
Definition: liststreamerinfos.cxx:10
h
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
SG::VarHandleBase::vhKey
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
Definition: StoreGate/src/VarHandleBase.cxx:623
DataPreparationPipeline::setupKernelArgs
StatusCode setupKernelArgs()
Definition: DataPreparationPipeline.cxx:180
python.Bindings.keys
keys
Definition: Control/AthenaPython/python/Bindings.py:798
LHEF::Writer
Pythia8::Writer Writer
Definition: Prophecy4fMerger.cxx:12
DataPreparationPipeline::m_pixelClusteringKernel
cl::Kernel m_pixelClusteringKernel
Kernel for pixel clustering.
Definition: DataPreparationPipeline.h:48
IntegrationBase::m_program
cl::Program m_program
Program object containing the kernel.
Definition: IntegrationBase.h:68
AthCommonDataStore::declareGaudiProperty
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition: AthCommonDataStore.h:156
DataPreparationPipeline::m_xAODContainerMaker
ToolHandle< xAODContainerMaker > m_xAODContainerMaker
Tool handle for xAODContainerMaker.
Definition: DataPreparationPipeline.h:89
fitman.k
k
Definition: fitman.py:528
DataPreparationPipeline::m_pxlClusteringInBuff
cl::Buffer m_pxlClusteringInBuff
Buffer for pixel clustering input.
Definition: DataPreparationPipeline.h:51
ServiceHandle< ICondSvc >