#include <MdcSegGrouperCsmc.h>
|
| MdcSegGrouperCsmc (const MdcDetector *gm, int debug) |
|
| ~MdcSegGrouperCsmc () |
|
void | fillWithSegs (const MdcSegList *inSegs) |
|
virtual int | incompWithSeg (const MdcSeg *refSeg, const MdcSeg *testSeg) |
|
virtual int | incompWithGroup (MdcSeg **segGroup, const MdcSeg *testSeg, int iply) |
|
void | resetComb (const class MdcSeg *) |
|
virtual MdcTrack * | storePar (MdcTrack *trk, double parms[2], double chisq, TrkContext &, double trackT0) |
|
virtual | ~MdcSegGrouper () |
|
int | nextGroup (MdcSeg **segGroup, bool printit) |
|
int | updateGap () |
|
void | resetGap (int nGap) |
|
virtual void | resetComb (const MdcSeg *seed)=0 |
|
int | nPly () const |
|
int | combineSegs (MdcTrack *&, MdcSeg *seed, TrkContext &, double trackT0, double maxSegChisqO, int combineByFitHits=0) |
|
void | transferHits (MdcTrack *track, int nSegs, MdcSeg **segGroup) |
|
void | dumpSegList () |
|
double | calcParBySegs (MdcSeg **segGroup, double seedAngle[2], int nToUse, double &qual, int &nSegFit, double param[2]) |
|
double | calcParByHits (MdcSeg **segGroup, int nToUse, const TrkExchangePar &par, double &qual, int &nSegFit, double param[2], double Bz) |
|
void | setNoInner (bool noInnerFlag) |
|
Definition at line 28 of file MdcSegGrouperCsmc.h.
◆ MdcSegGrouperCsmc()
MdcSegGrouperCsmc::MdcSegGrouperCsmc |
( |
const MdcDetector * | gm, |
|
|
int | debug ) |
Definition at line 35 of file MdcSegGrouperCsmc.cxx.
35 :
37
38
41
43 for (
int j = 0; j <
nPly(); j++) {
45 }
46}
int nAxialSuper(void) const
MdcSegGrouper(const MdcDetector *gm, int nDeep, int debug)
◆ ~MdcSegGrouperCsmc()
MdcSegGrouperCsmc::~MdcSegGrouperCsmc |
( |
| ) |
|
|
inline |
◆ fillWithSegs()
void MdcSegGrouperCsmc::fillWithSegs |
( |
const MdcSegList * | inSegs | ) |
|
Definition at line 50 of file MdcSegGrouperCsmc.cxx.
50 {
51
52
53
54 for (
int isuper = 0; isuper <
_gm->nSuper(); isuper++) {
55 const GmsList *inList = inSegs->
oneList(isuper);
56 if (inList->
count() == 0)
continue;
57
58 MdcSeg *inSeg = (MdcSeg *) inList->
first();
59
61
62 while (inSeg != 0) {
63
64 MdcSegInfoCsmc *info = new MdcSegInfoCsmc;
67
68
69
70 int isInserted = 0;
71 for (
int iseg = 0; iseg < (int)
segList[isuper].length(); iseg++) {
72 MdcSeg *aSeg =
segList[isuper][iseg];
73 if ( ((MdcSegInfoCsmc *)aSeg->
info())->phi0() < info->
phi0())
74 continue;
75 segList[isuper].insert(inSeg, iseg);
76 isInserted = 1;
77 break;
78 }
79 if (isInserted == 0)
segList[isuper].append(inSeg);
80
81 inSeg = (MdcSeg *) inSeg->
next();
82 }
83 }
84
85}
GmsListLink * next() const
GmsListLink * first() const
unsigned int count() const
HepAList< MdcSeg > * segList
void calcStraight(double phi, double slope, double rad, const double *inErr)
const GmsList * oneList(int slayIndex) const
const MdcSuperLayer * superlayer() const
MdcSegInfo * info() const
void setInfo(MdcSegInfo *ptr)
int whichView(void) const
Referenced by MdcTrackListCsmc::createFromSegs().
◆ incompWithGroup()
int MdcSegGrouperCsmc::incompWithGroup |
( |
MdcSeg ** | segGroup, |
|
|
const MdcSeg * | testSeg, |
|
|
int | iply ) |
|
virtual |
◆ incompWithSeg()
int MdcSegGrouperCsmc::incompWithSeg |
( |
const MdcSeg * | refSeg, |
|
|
const MdcSeg * | testSeg ) |
|
virtual |
Implements MdcSegGrouper.
Definition at line 89 of file MdcSegGrouperCsmc.cxx.
90 {
91
92
93 return 0;
94
95
96 if (testSeg == 0) return 0;
97
98
99 MdcSegInfoCsmc *refInfo = (MdcSegInfoCsmc *) refSeg->
info();
100 MdcSegInfoCsmc *testInfo = (MdcSegInfoCsmc *) testSeg->
info();
103 double refPhi0 = refInfo->
phi0();
104 double testPhi0 = testInfo->
phi0();
105 double corrPhi0 =
mdcWrapAng(refPhi0, testPhi0);
106 if (refPhi0 - corrPhi0 > 6. * sigPhi0) return -1;
107 if (corrPhi0 - refPhi0 > 6. * sigPhi0) {
108 if (testPhi0 > refPhi0) return 1;
109 else return -1;
110 }
111
112
113
114 double sigD0 = (refInfo->
sigD0() > testInfo->
sigD0() ?
116 double refD0 = refInfo->
d0();
117 double testD0 = testInfo->
d0();
118 if (fabs(refD0 - testD0) > 6. * sigD0) return -2;
119
120 return 0;
121}
double mdcWrapAng(double phi1, double phi2)
Referenced by resetComb().
◆ resetComb()
void MdcSegGrouperCsmc::resetComb |
( |
const class MdcSeg * | seed | ) |
|
Definition at line 133 of file MdcSegGrouperCsmc.cxx.
133 {
134
135
136
138 int i;
139 for (i = 0; i <
nDeep; i++) {
142 }
143 }
144
145 _seed = seed;
146
147 int islay = 0;
148 int iply = 0;
151 const MdcSuperLayer *seedSlay = 0;
152 if (seed != 0) seedSlay = seed->superlayer();
153
154
155 for (
const MdcSuperLayer *thisSlay =
_gm->firstSlay(); thisSlay != 0;
156 thisSlay = thisSlay->next()) {
157 bool noGoodYet = true;
158 islay++;
159
160 if (thisSlay == seedSlay) continue;
161 if (thisSlay->whichView() != 0) continue;
163
165 if (
segList[islay-1].length() != 0)
167 for (
int i = 0; i < (int)
segList[islay-1].length(); i++) {
168 MdcSeg *aSeg =
segList[islay-1][i];
171 if (invalid < 0) {
175 }
176 else if (invalid > 0) {
177
179 for (
int j = i; j < (int)
segList[islay-1].length(); j++)
181 break;
182 }
183 else {
185 noGoodYet = false;
186 }
187 }
188
189
190
191
192
193
194
197
198 continue;
199 }
200
203 iply++;
204 }
209}
virtual int incompWithSeg(const MdcSeg *refSeg, const MdcSeg *testSeg)
HepAList< MdcSeg > ** combList
◆ storePar()
Implements MdcSegGrouper.
Definition at line 212 of file MdcSegGrouperCsmc.cxx.
213 {
214
215 assert(trk == 0);
216 BesAngle foundPhi0(parms[1]);
217 TrkExchangePar par(parms[0], foundPhi0.Rad(), 0., 0., 0.);
218 return new MdcTrack(
_gm->nSuper(), par, chi2, context, t0);
219}
The documentation for this class was generated from the following files: