00001
00002 #ifndef TESTATHENACONSTRAINTFIT_H
00003 #define TESTATHENACONSTRAINTFIT_H
00004
00005
00006 #include "AthenaBaseComps/AthAlgorithm.h"
00007 #include "AsgTools/ToolHandle.h"
00008
00009
00010 #include "ZMassConstraint/IConstraintFit.h"
00011
00012 class TestAthenaConstraintFit : public AthAlgorithm {
00013
00014 public:
00016 TestAthenaConstraintFit( const std::string& name, ISvcLocator* svcLoc );
00017
00019 virtual StatusCode initialize();
00021 virtual StatusCode execute();
00022
00023 private:
00024 std::string m_electronContName;
00025 std::string m_vertexContName;
00026
00027 ToolHandle<ZMassConstraint::IConstraintFit> m_constraintFit;
00028
00029 };
00030
00031 #endif // TESTATHENACONSTRAINTFIT_H
00032