Skip to content
Snippets Groups Projects
Commit 713e84e1 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'using.DiTauMassTools-20241123' into 'main'

DiTauMassTools: Fix placement of using declarations.

See merge request !76146
parents 3e844782 d9a2b00c
No related branches found
No related tags found
14 merge requests!78241Draft: FPGATrackSim: GenScan code refactor,!78236Draft: Switching Streams https://its.cern.ch/jira/browse/ATR-27417,!78056AFP monitoring: new synchronization and cleaning,!78041AFP monitoring: new synchronization and cleaning,!77990Updating TRT chip masks for L1TRT trigger simulation - ATR-28372,!77731Draft: Updates to ZDC reconstruction,!77728Draft: updates to ZDC reconstruction,!77522Draft: sTGC Pad Trigger Emulator,!76725ZdcNtuple: Fix cppcheck warning.,!76611L1CaloFEXByteStream: Fix out-of-bounds array accesses.,!76474Punchthrough AF3 implementation in FastG4,!76343Draft: MooTrackBuilder: Recalibrate NSW hits in refine method,!76146DiTauMassTools: Fix placement of using declarations.,!75127Draft: Seeder types rebase2 grid fix
/* /*
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/ */
// Asg wrapper around the MissingMassCalculator // Asg wrapper around the MissingMassCalculator
...@@ -20,9 +20,6 @@ ...@@ -20,9 +20,6 @@
#include "xAODMissingET/MissingET.h" #include "xAODMissingET/MissingET.h"
#include "xAODBase/IParticle.h" #include "xAODBase/IParticle.h"
using ROOT::Math::PtEtaPhiMVector;
using ROOT::Math::XYVector;
class IMissingMassTool : public virtual asg::IAsgTool class IMissingMassTool : public virtual asg::IAsgTool
{ {
...@@ -31,6 +28,8 @@ class IMissingMassTool : public virtual asg::IAsgTool ...@@ -31,6 +28,8 @@ class IMissingMassTool : public virtual asg::IAsgTool
ASG_TOOL_INTERFACE(IMissingMassTool) ASG_TOOL_INTERFACE(IMissingMassTool)
public: public:
using PtEtaPhiMVector = ROOT::Math::PtEtaPhiMVector;
using XYVector = ROOT::Math::XYVector;
/// virtual destructor /// virtual destructor
virtual ~IMissingMassTool() {}; virtual ~IMissingMassTool() {};
......
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