BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Reconstruction/MdcPatRec/MdcTrkRecon/include/MdcTrkRecon/MdcSegParams.h
Go to the documentation of this file.
1// Kludgy class to hold misc segment parameters that are run-time settable
2// just a convenient way of moving them about
3
4// Interface Dependencies ----------------------------------------------
5
6#ifndef MDCSEGPARAMS_H
7#define MDCSEGPARAMS_H
8
9// End Interface Dependencies -----------------------------------------
10
11// Class //
12class MdcSegParams {
13public:
16
17 double maxChisq; // per DOF
18 int lPlot;
19 // int allMC;
20 int lHist;
21 int segRefit; // refit all segments, using new correction for drift dist
22 double nsigAddHit; // max allowed n sigma to add hit to existing segment
23 int useAllAmbig;
24 double z0cut; // for including stereo segs in cluster (rough cut)
25 double ctcut;
26 double phiDiffDropMult; // for dropping duplicate segs
27 double slopeDiffDrop; // for dropping duplicate segs
28 double delCtCut; // for grouping stereo segs (invalidStereo)
29 double delZ0Cut;
30 int dropDups;
31 int find3[11]; // search for 3-hit segments for each superlayer
32 int addHits;
33 int lPrint;
34};
35
36#endif