00001 #ifndef FSRUTILS_TOOLTESTER_H
00002 #define FSRUTILS_TOOLTESTER_H
00003
00004
00005 #include "AthenaBaseComps/AthAlgorithm.h"
00006 #include "GaudiKernel/ToolHandle.h"
00007
00008
00009 #include "FsrUtils/IFsrPhotonTool.h"
00010
00011
00012 #include "TLorentzVector.h"
00013
00014
00015 namespace FSR {
00016
00022 class ToolTester : public AthAlgorithm {
00023
00024 public:
00026 ToolTester( const std::string& name, ISvcLocator* svcLoc );
00027
00029 virtual StatusCode initialize();
00031 virtual StatusCode execute();
00032
00033 private:
00035 std::string m_sgKey;
00036
00038 ToolHandle< IFsrPhotonTool > m_fsrTool;
00039
00040 FsrCandidate candidate;
00041
00042 };
00043
00044 }
00045
00046 #endif // FSRUTILS_TOOLTESTER_H