Belle II Software development
MCAxialSegmentPairFilter.cc
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8#include <tracking/trackFindingCDC/filters/axialSegmentPair/MCAxialSegmentPairFilter.h>
9
10#include <tracking/trackFindingCDC/mclookup/CDCMCSegment2DLookUp.h>
11
12#include <tracking/trackFindingCDC/fitting/CDCRiemannFitter.h>
13
14#include <tracking/trackFindingCDC/eventdata/tracks/CDCAxialSegmentPair.h>
15#include <tracking/trackFindingCDC/eventdata/segments/CDCSegment2D.h>
16
17#include <tracking/trackFindingCDC/filters/base/MCSymmetricFilter.icc.h>
18
19#include <framework/core/ModuleParamList.templateDetails.h>
20
21using namespace Belle2;
22using namespace TrackFindingCDC;
23
25
27 : Super(allowReverse)
28{
29}
30
32 const std::string& prefix)
33{
34 Super::exposeParameters(moduleParamList, prefix);
35 moduleParamList->addParameter(prefixed(prefix, "requireRLPure"),
37 "Switch to require the segment combination contain mostly correct rl information",
39}
40
42{
43 const CDCAxialSegment2D* ptrFromSegment = axialSegmentPair.getStartSegment();
44 const CDCAxialSegment2D* ptrToSegment = axialSegmentPair.getEndSegment();
45
46 assert(ptrFromSegment);
47 assert(ptrToSegment);
48
49 const CDCAxialSegment2D& fromSegment = *ptrFromSegment;
50 const CDCAxialSegment2D& toSegment = *ptrToSegment;
51
53
54 // Check if the segments are aligned correctly along the Monte Carlo track
55 EForwardBackward pairFBInfo =
57 ? mcSegmentLookUp.areAlignedInMCTrackWithRLCheck(ptrFromSegment, ptrToSegment)
58 : mcSegmentLookUp.areAlignedInMCTrack(ptrFromSegment, ptrToSegment);
59
60 if (pairFBInfo == EForwardBackward::c_Invalid) return NAN;
61
62 if (pairFBInfo == EForwardBackward::c_Forward or (getAllowReverse() and pairFBInfo == EForwardBackward::c_Backward)) {
63 // Final check for the distance between the segment
64 Index fromNPassedSuperLayers = mcSegmentLookUp.getLastNPassedSuperLayers(ptrFromSegment);
65 if (fromNPassedSuperLayers == c_InvalidIndex) return NAN;
66
67 Index toNPassedSuperLayers = mcSegmentLookUp.getFirstNPassedSuperLayers(ptrToSegment);
68 if (toNPassedSuperLayers == c_InvalidIndex) return NAN;
69
70 // Do not join in the same superlayer - this should be the responsibility of the segment relation filter
71 if (abs(fromNPassedSuperLayers - toNPassedSuperLayers) == 0) return NAN;
72
73 // Do not join further away than two superlayers
74 if (abs(fromNPassedSuperLayers - toNPassedSuperLayers) > 2) return NAN;
75
76 if (not axialSegmentPair.getTrajectory2D().isFitted()) {
77 CDCTrajectory2D trajectory2D = CDCRiemannFitter::getFitter().fit(fromSegment, toSegment);
78 axialSegmentPair.setTrajectory2D(trajectory2D);
79 }
80
81 return fromSegment.size() + toSegment.size();
82 }
83 return NAN;
84}
The Module parameter list class.
Class representing a pair of reconstructed axial segements in adjacent superlayer.
void setTrajectory2D(const CDCTrajectory2D &trajectory2D) const
Setter for the trajectory of the two dimensional trajectory.
const CDCAxialSegment2D * getEndSegment() const
Getter for the end segment.
CDCTrajectory2D & getTrajectory2D() const
Getter for the trajectory of the two dimensional trajectory.
const CDCAxialSegment2D * getStartSegment() const
Getter for the start segment.
CDCTrajectory2D fit(const CDCObservations2D &observations2D) const
Fits a collection of observation drift circles.
Index getLastNPassedSuperLayers(const ACDCHitCollection *ptrHits) const
Getter for number of passed superlayer till the last hit the collection of hits which has the Monte C...
EForwardBackward areAlignedInMCTrackWithRLCheck(const ACDCHitCollection *ptrFromHits, const ACDCHitCollection *ptrToHits) const
Returns if the second collection of hits follows the first collection of hits in their common Monte C...
EForwardBackward areAlignedInMCTrack(const ACDCHitCollection *ptrFromHits, const ACDCHitCollection *ptrToHits) const
Returns if the second collection of hits follows the first collection of hits in their common Monte C...
Index getFirstNPassedSuperLayers(const ACDCHitCollection *ptrHits) const
Getter for number of passed superlayer till the first hit the collection of hits which has the Monte ...
Specialisation of the lookup for the truth values of two dimensional segments.
static const CDCMCSegment2DLookUp & getInstance()
Getter for the singletone instance.
static const CDCRiemannFitter & getFitter()
Static getter for a general Riemann fitter.
A reconstructed sequence of two dimensional hits in one super layer.
Definition: CDCSegment2D.h:39
Particle trajectory as it is seen in xy projection represented as a circle.
bool isFitted() const
Checks if the circle is already set to a valid value.
bool m_param_requireRLPure
Parameter : Switch to require the segment combination contain mostly correct rl information.
Weight operator()(const CDCAxialSegmentPair &axialSegmentPair) final
Checks if a pair of axial segments is a good combination.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the set of parameters of the filter to the module parameter list.
MCAxialSegmentPairFilter(bool allowReverse=true)
Constructor.
Mixin for filters that use Monte Carlo information.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Expose the set of parameters of the filter to the module parameter list.
bool getAllowReverse() const
Getter for the allow reverse parameter.
void addParameter(const std::string &name, T &paramVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module list.
EForwardBackward
Enumeration to represent the distinct possibilities of the right left passage information.
Abstract base class for different kinds of events.