Skip to content
Snippets Groups Projects

Modernize LoKiPhys

Merged Gerhard Raven requested to merge modernize-lokiphys into master
42 files
+ 482
1311
Compare changes
  • Side-by-side
  • Inline
Files
42
@@ -76,8 +76,6 @@ namespace Decays
Exclusive
( const Decays::Decay& decay ,
const Alg alg = Daughters ) ;
/// MANDATORY: virtual destructor
virtual ~Exclusive () {}
// ====================================================================
public:
// ====================================================================
@@ -193,11 +191,6 @@ namespace Decays
// ======================================================================
private:
// ======================================================================
/// the default constructor is disabled
Exclusive () ; // the default constructor is disabled
// ======================================================================
private:
// ======================================================================
/// The mother
Decays::Node m_mother ; // the mother
/// The children
@@ -243,8 +236,6 @@ namespace Decays
const Alg alg = Daughters ) ;
/// constructor from exclusive decay
Inclusive ( const Exclusive& right ) ;
/// MANDATORY: virtual destructor
virtual ~Inclusive () {}
// ====================================================================
public:
// ====================================================================
@@ -281,11 +272,6 @@ namespace Decays
Inclusive& operator+= ( const LHCb::ParticleProperty* node )
{ addDaughter ( node ) ; return *this ; }
// ======================================================================
private:
// ======================================================================
/// the default constructor is disabled
Inclusive () ; // the default constructor is disabled
// ======================================================================
};
// ========================================================================
/** @class Optional
@@ -324,8 +310,6 @@ namespace Decays
Optional
( const Exclusive& right ,
const TreeList& optional = TreeList () ) ;
/// MANDATORY: virtual destructor
virtual ~Optional () {}
// ====================================================================
public:
// ====================================================================
@@ -405,11 +389,6 @@ namespace Decays
// ======================================================================
private:
// ======================================================================
/// the default constructor is disabled
Optional () ; // the default constructor is disabled
// ======================================================================
private:
// ======================================================================
/// the optional particles in the tree
TreeList m_optional ; // the optional particles in the tree
// ======================================================================
Loading