Skip to content
Snippets Groups Projects
Commit d6708a08 authored by Ivan Polyakov's avatar Ivan Polyakov
Browse files

add posibility for 5- and 6-body combinations (to be used in...

add posibility for 5- and 6-body combinations (to be used in Moore/Hlt/Hlt2Conf/python/Hlt2Conf/algorithms_thor.py)
parent 1981ea88
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,13 @@ ...@@ -13,7 +13,13 @@
using TwoBodyCombiner = NBodyParticleCombiner<LHCb::Particle, LHCb::Particle>; using TwoBodyCombiner = NBodyParticleCombiner<LHCb::Particle, LHCb::Particle>;
using ThreeBodyCombiner = NBodyParticleCombiner<LHCb::Particle, LHCb::Particle, LHCb::Particle>; using ThreeBodyCombiner = NBodyParticleCombiner<LHCb::Particle, LHCb::Particle, LHCb::Particle>;
using FourBodyCombiner = NBodyParticleCombiner<LHCb::Particle, LHCb::Particle, LHCb::Particle, LHCb::Particle>; using FourBodyCombiner = NBodyParticleCombiner<LHCb::Particle, LHCb::Particle, LHCb::Particle, LHCb::Particle>;
using FiveBodyCombiner =
NBodyParticleCombiner<LHCb::Particle, LHCb::Particle, LHCb::Particle, LHCb::Particle, LHCb::Particle>;
using SixBodyCombiner = NBodyParticleCombiner<LHCb::Particle, LHCb::Particle, LHCb::Particle, LHCb::Particle,
LHCb::Particle, LHCb::Particle>;
DECLARE_COMPONENT_WITH_ID( TwoBodyCombiner, "TwoBodyCombiner" ) DECLARE_COMPONENT_WITH_ID( TwoBodyCombiner, "TwoBodyCombiner" )
DECLARE_COMPONENT_WITH_ID( ThreeBodyCombiner, "ThreeBodyCombiner" ) DECLARE_COMPONENT_WITH_ID( ThreeBodyCombiner, "ThreeBodyCombiner" )
DECLARE_COMPONENT_WITH_ID( FourBodyCombiner, "FourBodyCombiner" ) DECLARE_COMPONENT_WITH_ID( FourBodyCombiner, "FourBodyCombiner" )
DECLARE_COMPONENT_WITH_ID( FiveBodyCombiner, "FiveBodyCombiner" )
DECLARE_COMPONENT_WITH_ID( SixBodyCombiner, "SixBodyCombiner" )
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