Skip to content
Snippets Groups Projects

proof-of-concept for a new tupling algorithm

Merged Abhijit Mathad requested to merge newtuplealgo into master
All threads resolved!
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -66,7 +66,10 @@ protected:
StatusCode booktuple( const Tuples::Tuple& m_ntuple, const std::string& colname, const T2& val ) const;
StatusCode checks();
StatusCode setParticleTupleProps();
void FindAndBookTuple( const unsigned int& i, const T& particles, const Tuples::Tuple& ntuple ) const {}
void FindAndBookTuple( const unsigned int& i, const T& particles, const Tuples::Tuple& ntuple ) const {
//variables used in explicit template specialisation, so suppress unused variable compiler warning here
(void)i; (void)particles; (void)ntuple;
}
//(Will be removed): The following overloaded function (makeMCTwoBodyDecay) are only used when m_makeCustomData is set
// to true (see m_makeCustomData property description for more info)
void makeMCTwoBodyDecay( LHCb::MCParticle& p, LHCb::MCParticle& p1, LHCb::MCParticle& p2, const int& parentid ) const;
Loading