Skip to content
Snippets Groups Projects
Commit a984a4cb authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

TrigParticleTPCnv: Fix gcc9 warnings.

In C++11, implicit declarations of copy and assignment are deprecated if the
class has a user defined destructor or copy or assignment.  gcc9 now warns
about this by default.
Adjust to avoid the warning.
parent a7ec5a15
No related branches found
No related tags found
No related merge requests found
Showing
with 36 additions and 36 deletions
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -25,7 +25,7 @@ class TrigEFBjet_p1 ...@@ -25,7 +25,7 @@ class TrigEFBjet_p1
public: public:
TrigEFBjet_p1() {} TrigEFBjet_p1() {}
virtual ~TrigEFBjet_p1(){} virtual ~TrigEFBjet_p1() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -32,7 +32,7 @@ class TrigEFBjet_p2 { ...@@ -32,7 +32,7 @@ class TrigEFBjet_p2 {
m_xChi2(0.0), m_xSv(0.0), m_xChi2(0.0), m_xSv(0.0),
m_xmvtx(0.0), m_xevtx(0.0), m_xnvtx(0.0) m_xmvtx(0.0), m_xevtx(0.0), m_xnvtx(0.0)
{} {}
virtual ~TrigEFBjet_p2(){} virtual ~TrigEFBjet_p2() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -27,7 +27,7 @@ class TrigEFBphys_p1 ...@@ -27,7 +27,7 @@ class TrigEFBphys_p1
public: public:
TrigEFBphys_p1() {} TrigEFBphys_p1() {}
virtual ~TrigEFBphys_p1(){} virtual ~TrigEFBphys_p1() = default;
enum pType_p1{PHIKK=0, DSPHIPI=1, BMUMU=2, BMUMUX=3, JPSIEE=4, JPSIMUMU=5, MULTIMU=6, BKMUMU=7, BDKSTMUMU=8, BSPHIMUMU=9, LBLMUMU=10, BCDSMUMU=11}; enum pType_p1{PHIKK=0, DSPHIPI=1, BMUMU=2, BMUMUX=3, JPSIEE=4, JPSIMUMU=5, MULTIMU=6, BKMUMU=7, BDKSTMUMU=8, BSPHIMUMU=9, LBLMUMU=10, BCDSMUMU=11};
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -29,7 +29,7 @@ class TrigEFBphys_p2 ...@@ -29,7 +29,7 @@ class TrigEFBphys_p2
public: public:
TrigEFBphys_p2() {} TrigEFBphys_p2() {}
virtual ~TrigEFBphys_p2(){} virtual ~TrigEFBphys_p2() = default;
enum pType_p1{PHIKK=0, DSPHIPI=1, BMUMU=2, BMUMUX=3, JPSIEE=4, JPSIMUMU=5, MULTIMU=6, BKMUMU=7, BDKSTMUMU=8, BSPHIMUMU=9, LBLMUMU=10, BCDSMUMU=11}; enum pType_p1{PHIKK=0, DSPHIPI=1, BMUMU=2, BMUMUX=3, JPSIEE=4, JPSIMUMU=5, MULTIMU=6, BKMUMU=7, BDKSTMUMU=8, BSPHIMUMU=9, LBLMUMU=10, BCDSMUMU=11};
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -29,7 +29,7 @@ class TrigEFBphys_p3 ...@@ -29,7 +29,7 @@ class TrigEFBphys_p3
public: public:
TrigEFBphys_p3() {} TrigEFBphys_p3() {}
virtual ~TrigEFBphys_p3(){} virtual ~TrigEFBphys_p3() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -28,7 +28,7 @@ class TrigElectron_p1 ...@@ -28,7 +28,7 @@ class TrigElectron_p1
public: public:
TrigElectron_p1() {} TrigElectron_p1() {}
virtual ~TrigElectron_p1() {} virtual ~TrigElectron_p1() = default;
friend class TrigElectronCnv_p1; friend class TrigElectronCnv_p1;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -49,7 +49,7 @@ class TrigElectron_p2 ...@@ -49,7 +49,7 @@ class TrigElectron_p2
m_cl_e_frac_S2(-999.9), m_cl_e_frac_S2(-999.9),
m_cl_e_frac_S3(-999.9) m_cl_e_frac_S3(-999.9)
{} {}
virtual ~TrigElectron_p2() {} virtual ~TrigElectron_p2() = default;
friend class TrigElectronCnv_p2; friend class TrigElectronCnv_p2;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -38,7 +38,7 @@ class TrigElectron_p3 ...@@ -38,7 +38,7 @@ class TrigElectron_p3
m_tr_nr_trt_hits(-999), m_tr_nr_trt_hits(-999),
m_tr_nr_trt_hithresh_hits(-999) m_tr_nr_trt_hithresh_hits(-999)
{} {}
virtual ~TrigElectron_p3() {} virtual ~TrigElectron_p3() = default;
friend class TrigElectronCnv_p3; friend class TrigElectronCnv_p3;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -25,7 +25,7 @@ class TrigL2Bjet_p1 ...@@ -25,7 +25,7 @@ class TrigL2Bjet_p1
public: public:
TrigL2Bjet_p1() {} TrigL2Bjet_p1() {}
virtual ~TrigL2Bjet_p1(){} virtual ~TrigL2Bjet_p1() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -32,7 +32,7 @@ class TrigL2Bjet_p2 { ...@@ -32,7 +32,7 @@ class TrigL2Bjet_p2 {
m_xChi2(0.0), m_xSv(0.0), m_xChi2(0.0), m_xSv(0.0),
m_xmvtx(0.0), m_xevtx(0.0), m_xnvtx(0.0) m_xmvtx(0.0), m_xevtx(0.0), m_xnvtx(0.0)
{} {}
virtual ~TrigL2Bjet_p2(){} virtual ~TrigL2Bjet_p2() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -29,7 +29,7 @@ class TrigL2Bjet_p3 { ...@@ -29,7 +29,7 @@ class TrigL2Bjet_p3 {
TrigL2Bjet_p3() : TrigL2Bjet_p3() :
m_valid(0), m_roiID(0), m_P4PtEtaPhiM(0) m_valid(0), m_roiID(0), m_P4PtEtaPhiM(0)
{} {}
virtual ~TrigL2Bjet_p3(){} virtual ~TrigL2Bjet_p3() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -27,7 +27,7 @@ class TrigL2Bphys_p1 ...@@ -27,7 +27,7 @@ class TrigL2Bphys_p1
public: public:
TrigL2Bphys_p1() {} TrigL2Bphys_p1() {}
virtual ~TrigL2Bphys_p1(){} virtual ~TrigL2Bphys_p1() = default;
enum pType_p1{PHIKK=0, DSPHIPI=1, BMUMU=2, BMUMUX=3, JPSIEE=4, JPSIMUMU=5, MULTIMU=6, BKMUMU=7, BDKSTMUMU=8, BSPHIMUMU=9, LBLMUMU=10, BCDSMUMU=11}; enum pType_p1{PHIKK=0, DSPHIPI=1, BMUMU=2, BMUMUX=3, JPSIEE=4, JPSIMUMU=5, MULTIMU=6, BKMUMU=7, BDKSTMUMU=8, BSPHIMUMU=9, LBLMUMU=10, BCDSMUMU=11};
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -29,7 +29,7 @@ class TrigL2Bphys_p2 ...@@ -29,7 +29,7 @@ class TrigL2Bphys_p2
public: public:
TrigL2Bphys_p2() {} TrigL2Bphys_p2() {}
virtual ~TrigL2Bphys_p2(){} virtual ~TrigL2Bphys_p2() = default;
enum pType_p1{PHIKK=0, DSPHIPI=1, BMUMU=2, BMUMUX=3, JPSIEE=4, JPSIMUMU=5, MULTIMU=6, BKMUMU=7, BDKSTMUMU=8, BSPHIMUMU=9, LBLMUMU=10, BCDSMUMU=11}; enum pType_p1{PHIKK=0, DSPHIPI=1, BMUMU=2, BMUMUX=3, JPSIEE=4, JPSIMUMU=5, MULTIMU=6, BKMUMU=7, BDKSTMUMU=8, BSPHIMUMU=9, LBLMUMU=10, BCDSMUMU=11};
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -28,7 +28,7 @@ class TrigL2Bphys_p3 ...@@ -28,7 +28,7 @@ class TrigL2Bphys_p3
public: public:
TrigL2Bphys_p3() {} TrigL2Bphys_p3() {}
virtual ~TrigL2Bphys_p3(){} virtual ~TrigL2Bphys_p3() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -27,7 +27,7 @@ class TrigPhoton_p1 ...@@ -27,7 +27,7 @@ class TrigPhoton_p1
public: public:
TrigPhoton_p1() {} TrigPhoton_p1() {}
virtual ~TrigPhoton_p1(){} virtual ~TrigPhoton_p1() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -45,7 +45,7 @@ class TrigPhoton_p2 ...@@ -45,7 +45,7 @@ class TrigPhoton_p2
m_valid(false) m_valid(false)
{} {}
virtual ~TrigPhoton_p2(){} virtual ~TrigPhoton_p2() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -35,7 +35,7 @@ class TrigPhoton_p3 ...@@ -35,7 +35,7 @@ class TrigPhoton_p3
m_valid(false) m_valid(false)
{} {}
virtual ~TrigPhoton_p3(){} virtual ~TrigPhoton_p3() = default;
//private: //private:
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/********************************************************************************** /**********************************************************************************
...@@ -40,7 +40,7 @@ class TrigTau_p3 ...@@ -40,7 +40,7 @@ class TrigTau_p3
m_p4PtEtaPhiM() m_p4PtEtaPhiM()
{}; {};
~TrigTau_p3() {}; ~TrigTau_p3() = default;
//private: //private:
......
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