ATLAS Offline Software
Loading...
Searching...
No Matches
TrigSpacePointCountsCnvAlg.h
Go to the documentation of this file.
1// Dear emacs, this is -*- c++ -*-
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7// $Id:$
8#ifndef xAODTrigMinBiasCNV_TrigSpacePointCountsCNVALG_H
9#define xAODTrigMinBiasCNV_TrigSpacePointCountsCNVALG_H
10
11// System include(s):
12#include <string>
13
14// Gaudi/Athena include(s):
16#include "GaudiKernel/ToolHandle.h"
17
18// Local include(s):
20
21namespace xAODMaker {
22
31
32 public:
34 TrigSpacePointCountsCnvAlg( const std::string& name, ISvcLocator* svcLoc );
35
37 virtual StatusCode initialize();
39 virtual StatusCode execute();
40
41 private:
43 std::string m_aodKey;
45 std::string m_xaodKey;
46
48 ToolHandle< ITrigSpacePointCountsCnvTool > m_cnvTool;
49
50 }; // class TrigSpacePointCountsCnvAlg
51
52} // namespace xAODMaker
53
54#endif // xAODTrigMinBiasCNV_TrigSpacePointCountsCNVALG_H
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
std::string m_aodKey
StoreGate key of the input container.
ToolHandle< ITrigSpacePointCountsCnvTool > m_cnvTool
Handle to the converter tool.
virtual StatusCode execute()
Function executing the algorithm.
virtual StatusCode initialize()
Function initialising the algorithm.
std::string m_xaodKey
StoreGate key for the output container.
TrigSpacePointCountsCnvAlg(const std::string &name, ISvcLocator *svcLoc)
Regular Algorithm constructor.