8#include <tracking/vxdHoughTracking/filters/pathFilters/FourHitFilter.h>
9#include <tracking/trackFindingCDC/filters/base/Filter.icc.h>
10#include <tracking/trackFindingCDC/utilities/StringManipulation.h>
11#include <framework/core/ModuleParamList.templateDetails.h>
12#include <framework/geometry/BFieldManager.h>
15using namespace TrackFindingCDC;
16using namespace vxdHoughTracking;
21 "Cut on the difference of the radii of the two circles that can be defined by two hit triplets.",
24 moduleParamList->
addParameter(TrackFindingCDC::prefixed(prefix,
"circleCenterPositionDifferenceCut"),
26 "Cut on the difference between the center positions of the two circles that can be defined by two hit triplets.",
36TrackFindingCDC::Weight
39 const std::vector<TrackFindingCDC::WithWeight<const VXDHoughState*>>& previousHits =
pair.first;
42 if (previousHits.size() != 3) {
46 const B2Vector3D& firstHitPos = previousHits.at(0)->getHit()->getPosition();
47 const B2Vector3D& secondHitPos = previousHits.at(1)->getHit()->getPosition();
48 const B2Vector3D& thirdHitPos = previousHits.at(2)->getHit()->getPosition();
49 const B2Vector3D& currentHitPos =
pair.second->getHit()->getPosition();
The Module parameter list class.
std::pair< const std::vector< TrackFindingCDC::WithWeight< const VXDHoughState * > >, VXDHoughState * > Object
static const double T
[tesla]
double m_CircleRadiusDifferenceCut
Cut on difference of the two circle radii estimated from two triplets.
double m_CircleCenterPositionDifferenceCut
Cut on difference of the two circle center estimated from two triplets.
TrackFindingCDC::Weight operator()(const BasePathFilter::Object &pair) override
Return the weight based on the ThreeHitVariables.
void beginRun() override
set BField value for estimator
FourHitVariables m_fourHitVariables
Construct empty ThreeHitVariables instance.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Expose the parameters.
void addParameter(const std::string &name, T ¶mVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module list.
B2Vector3< double > B2Vector3D
typedef for common usage with double
static void getField(const double *pos, double *field)
return the magnetic field at a given position.
Abstract base class for different kinds of events.