#include <ScanFrameTwoTrack.h>
Inheritance diagram for ScanFrameTwoTrack:

Public Member Functions | |
| ScanFrameTwoTrack (const TGWindow *p=0) | |
| virtual | ~ScanFrameTwoTrack () |
| virtual void | ResetDisplay (std::string mode="") |
| virtual void | PassChar (const std::string attribute, char value) |
| virtual void | PassInt (const std::string attribute, Long_t value) |
| virtual void | PassFloat (const std::string attribute, Double_t value) |
| virtual void | BuildScanSheet () |
| virtual void | InitScanSheet () |
| virtual void | ResyncData () |
| virtual void | WriteScanSheet (ofstream &) |
| void | ProcMissTk1U () |
| void | ProcMissTk1V () |
| void | ProcMissTk2U () |
| void | ProcMissTk2V () |
Protected Member Functions | |
| ClassDef (ScanFrameTwoTrack, 1) | |
Protected Attributes | |
| TGCheckButton * | fFakeTk1Uwidget |
| TGCheckButton * | fFakeTk1Vwidget |
| Transient, do not output. | |
| TGCheckButton * | fFakeTk2Uwidget |
| Transient, do not output. | |
| TGCheckButton * | fFakeTk2Vwidget |
| Transient, do not output. | |
| TGCheckButton * | fMissTk1Uwidget |
| Transient, do not output. | |
| TGCheckButton * | fMissTk1Vwidget |
| Transient, do not output. | |
| TGCheckButton * | fMissTk2Uwidget |
| Transient, do not output. | |
| TGCheckButton * | fMissTk2Vwidget |
| Transient, do not output. | |
| TGCheckButton * | fTk1Kinkwidget |
| Transient, do not output. | |
| TGCheckButton * | fTk2Kinkwidget |
| Transient, do not output. | |
| TGCheckButton * | fTkSwapwidget |
| Transient, do not output. | |
| TGNumberEntry * | fMissTk1PlnOutUwidget |
| Transient, do not output. | |
| TGNumberEntry * | fMissTk1PlnOutVwidget |
| Transient, do not output. | |
| TGNumberEntry * | fMissTk1PlnTotUwidget |
| Transient, do not output. | |
| TGNumberEntry * | fMissTk1PlnTotVwidget |
| Transient, do not output. | |
| TGNumberEntry * | fMissTk2PlnOutUwidget |
| Transient, do not output. | |
| TGNumberEntry * | fMissTk2PlnOutVwidget |
| Transient, do not output. | |
| TGNumberEntry * | fMissTk2PlnTotUwidget |
| Transient, do not output. | |
| TGNumberEntry * | fMissTk2PlnTotVwidget |
| Transient, do not output. | |
| Bool_t | fFakeTk1U |
| Transient, do not output. | |
| Bool_t | fFakeTk1V |
| Bool_t | fFakeTk2U |
| Bool_t | fFakeTk2V |
| Bool_t | fMissTk1U |
| Bool_t | fMissTk1V |
| Bool_t | fMissTk2U |
| Bool_t | fMissTk2V |
| Bool_t | fTk1Kink |
| Bool_t | fTk2Kink |
| Bool_t | fTkSwap |
| Int_t | fMissTk1PlnOutU |
| Int_t | fMissTk1PlnOutV |
| Int_t | fMissTk1PlnTotU |
| Int_t | fMissTk1PlnTotV |
| Int_t | fMissTk2PlnOutU |
| Int_t | fMissTk2PlnOutV |
| Int_t | fMissTk2PlnTotU |
| Int_t | fMissTk2PlnTotV |
| Int_t | fNumTrk |
| Int_t | fNumShw |
| Float_t | fQoverP |
| char | fBestRange |
| Float_t | fTrkEne |
| Float_t | fShwEne |
ScanFrameTwoTrack is the class that support two track scanning
Definition at line 19 of file ScanFrameTwoTrack.h.
|
|
Definition at line 15 of file ScanFrameTwoTrack.cxx. 00015 : ScanFrame(p,false) { 00016 00017 // Note: Initialise both base and this sub-class state via the InitScanSheet() method. 00018 this->Init(); 00019 // Draw the entire scan frame with the scan sheet embedded from this sub-class. 00020 this->BuildScanFrame(p); 00021 }
|
|
|
Definition at line 23 of file ScanFrameTwoTrack.cxx. 00023 {
00024 }
|
|
|
Reimplemented from ScanFrame. Definition at line 27 of file ScanFrameTwoTrack.cxx. References fFakeTk1Uwidget, fFakeTk1Vwidget, fFakeTk2Uwidget, fFakeTk2Vwidget, fMissTk1PlnOutUwidget, fMissTk1PlnOutVwidget, fMissTk1PlnTotUwidget, fMissTk1PlnTotVwidget, fMissTk1Uwidget, fMissTk1Vwidget, fMissTk2PlnOutUwidget, fMissTk2PlnOutVwidget, fMissTk2PlnTotUwidget, fMissTk2PlnTotVwidget, fMissTk2Uwidget, fMissTk2Vwidget, fTk1Kinkwidget, fTk2Kinkwidget, and fTkSwapwidget. 00027 {
00028
00029 TGHorizontalFrame* uv_frame = new TGHorizontalFrame(fSframe,400,10);
00030 fSframe->AddFrame(uv_frame, new TGLayoutHints(kLHintsExpandX,1,1,1,1));
00031
00032 TGVerticalFrame* u_frame = new TGVerticalFrame(uv_frame,300,400);
00033 uv_frame->AddFrame(u_frame,new TGLayoutHints(kLHintsCenterX,2,2,2,2));
00034
00035 TGVertical3DLine* v_line = new TGVertical3DLine(uv_frame,2,100);
00036 uv_frame->AddFrame(v_line,new TGLayoutHints(kLHintsCenterX|kLHintsExpandY,2,2,2,2));
00037
00038 TGVerticalFrame* v_frame = new TGVerticalFrame(uv_frame,300,400);
00039 uv_frame->AddFrame(v_frame,new TGLayoutHints(kLHintsCenterX,2,2,2,2));
00040
00041 TGLabel* label = 0;
00042 TGHorizontalFrame* h_frame = 0;
00043
00044 label = new TGLabel(u_frame,"U View");
00045 u_frame->AddFrame(label,new TGLayoutHints(kLHintsCenterX,2,2,2,2));
00046
00047 fFakeTk1Uwidget = new TGCheckButton(u_frame," Fake 1st track ");
00048 u_frame->AddFrame(fFakeTk1Uwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00049
00050 fFakeTk2Uwidget = new TGCheckButton(u_frame," Fake 2nd track ");
00051 u_frame->AddFrame(fFakeTk2Uwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00052
00053 fMissTk1Uwidget = new TGCheckButton(u_frame," 1st Missing track ");
00054 fMissTk1Uwidget->Connect("Clicked()","ScanFrameTwoTrack",this,"ProcMissTk1U()");
00055 u_frame->AddFrame(fMissTk1Uwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00056
00057 h_frame = new TGHorizontalFrame(u_frame,200,10);
00058 label = new TGLabel(h_frame," ");
00059 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00060 fMissTk1PlnOutUwidget = new TGNumberEntry(h_frame,0,5,-1,TGNumberFormat::kNESInteger);
00061 fMissTk1PlnOutUwidget->SetState(false);
00062 h_frame->AddFrame(fMissTk1PlnOutUwidget,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00063 label = new TGLabel(h_frame,"Planes unique to track");
00064 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00065 u_frame->AddFrame(h_frame,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00066
00067 h_frame = new TGHorizontalFrame(u_frame,200,10);
00068 label = new TGLabel(h_frame," ");
00069 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00070 fMissTk1PlnTotUwidget = new TGNumberEntry(h_frame,0,5,-1,TGNumberFormat::kNESInteger);
00071 fMissTk1PlnTotUwidget->SetState(false);
00072 h_frame->AddFrame(fMissTk1PlnTotUwidget,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00073 label = new TGLabel(h_frame,"Planes total");
00074 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00075 u_frame->AddFrame(h_frame,new TGLayoutHints(kLHintsLeft ,2,2,2,2));
00076
00077 fMissTk2Uwidget = new TGCheckButton(u_frame," 2nd Missing track ");
00078 fMissTk2Uwidget->Connect("Clicked()","ScanFrameTwoTrack",this,"ProcMissTk2U()");
00079 u_frame->AddFrame(fMissTk2Uwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00080
00081 h_frame = new TGHorizontalFrame(u_frame,200,10);
00082 label = new TGLabel(h_frame," ");
00083 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00084 fMissTk2PlnOutUwidget = new TGNumberEntry(h_frame,0,5,-1,TGNumberFormat::kNESInteger);
00085 fMissTk2PlnOutUwidget->SetState(false);
00086 h_frame->AddFrame(fMissTk2PlnOutUwidget,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00087 label = new TGLabel(h_frame,"Planes unique to track");
00088 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00089 u_frame->AddFrame(h_frame,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00090
00091 h_frame = new TGHorizontalFrame(u_frame,200,10);
00092 label = new TGLabel(h_frame," ");
00093 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00094 fMissTk2PlnTotUwidget = new TGNumberEntry(h_frame,0,5,-1,TGNumberFormat::kNESInteger);
00095 fMissTk2PlnTotUwidget->SetState(false);
00096 h_frame->AddFrame(fMissTk2PlnTotUwidget,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00097 label = new TGLabel(h_frame,"Planes total");
00098 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00099 u_frame->AddFrame(h_frame,new TGLayoutHints(kLHintsLeft ,2,2,2,2));
00100
00101 label = new TGLabel(v_frame,"V View");
00102 v_frame->AddFrame(label,new TGLayoutHints(kLHintsCenterX,2,2,2,2));
00103
00104 fFakeTk1Vwidget = new TGCheckButton(v_frame," Fake 1st track ");
00105 v_frame->AddFrame(fFakeTk1Vwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00106
00107 fFakeTk2Vwidget = new TGCheckButton(v_frame," Fake 2nd track ");
00108 v_frame->AddFrame(fFakeTk2Vwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00109
00110 fMissTk1Vwidget = new TGCheckButton(v_frame," 1st Missing track ");
00111 fMissTk1Vwidget->Connect("Clicked()","ScanFrameTwoTrack",this,"ProcMissTk1V()");
00112 v_frame->AddFrame(fMissTk1Vwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00113
00114 h_frame = new TGHorizontalFrame(v_frame,200,10);
00115 label = new TGLabel(h_frame," ");
00116 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00117 fMissTk1PlnOutVwidget = new TGNumberEntry(h_frame,0,5,-1,TGNumberFormat::kNESInteger);
00118 fMissTk1PlnOutVwidget->SetState(false);
00119 h_frame->AddFrame(fMissTk1PlnOutVwidget,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00120 label = new TGLabel(h_frame,"Planes unique to track");
00121 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00122 v_frame->AddFrame(h_frame,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00123
00124 h_frame = new TGHorizontalFrame(v_frame,200,10);
00125 label = new TGLabel(h_frame," ");
00126 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00127 fMissTk1PlnTotVwidget = new TGNumberEntry(h_frame,0,5,-1,TGNumberFormat::kNESInteger);
00128 fMissTk1PlnTotVwidget->SetState(false);
00129 h_frame->AddFrame(fMissTk1PlnTotVwidget,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00130 label = new TGLabel(h_frame,"Planes total");
00131 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00132 v_frame->AddFrame(h_frame,new TGLayoutHints(kLHintsLeft ,2,2,2,2));
00133
00134 fMissTk2Vwidget = new TGCheckButton(v_frame," 2nd Missing track ");
00135 fMissTk2Vwidget->Connect("Clicked()","ScanFrameTwoTrack",this,"ProcMissTk2V()");
00136 v_frame->AddFrame(fMissTk2Vwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00137
00138 h_frame = new TGHorizontalFrame(v_frame,200,10);
00139 label = new TGLabel(h_frame," ");
00140 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00141 fMissTk2PlnOutVwidget = new TGNumberEntry(h_frame,0,5,-1,TGNumberFormat::kNESInteger);
00142 fMissTk2PlnOutVwidget->SetState(false);
00143 h_frame->AddFrame(fMissTk2PlnOutVwidget,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00144 label = new TGLabel(h_frame,"Planes unique to track");
00145 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00146 v_frame->AddFrame(h_frame,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00147
00148 h_frame = new TGHorizontalFrame(v_frame,200,10);
00149 label = new TGLabel(h_frame," ");
00150 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00151 fMissTk2PlnTotVwidget = new TGNumberEntry(h_frame,0,5,-1,TGNumberFormat::kNESInteger);
00152 fMissTk2PlnTotVwidget->SetState(false);
00153 h_frame->AddFrame(fMissTk2PlnTotVwidget,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00154 label = new TGLabel(h_frame,"Planes total");
00155 h_frame->AddFrame(label,new TGLayoutHints(kLHintsLeft,2,2,2,2));
00156 v_frame->AddFrame(h_frame,new TGLayoutHints(kLHintsLeft ,2,2,2,2));
00157
00158 TGHorizontal3DLine* h_line = new TGHorizontal3DLine(fSframe,400,2);
00159 fSframe->AddFrame(h_line, new TGLayoutHints(kLHintsExpandX,1,1,1,1));
00160
00161 fTk1Kinkwidget = new TGCheckButton(fSframe," Kink on 1st track ");
00162 fSframe->AddFrame(fTk1Kinkwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00163
00164 fTk2Kinkwidget = new TGCheckButton(fSframe," Kink on 2nd track ");
00165 fSframe->AddFrame(fTk2Kinkwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00166
00167 fTkSwapwidget = new TGCheckButton(fSframe," Found wrong (shorter) track ");
00168 fSframe->AddFrame(fTkSwapwidget,new TGLayoutHints(kLHintsLeft|kLHintsExpandY,2,2,2,2));
00169
00170 }
|
|
||||||||||||
|
Reimplemented from ScanFrame. |
|
|
||||||||||||
|
Reimplemented from ScanFrame. Definition at line 208 of file ScanFrameTwoTrack.cxx. References fBestRange. 00208 {
00209
00210 if ( attribute == "BestRange" ) fBestRange = value;
00211
00212 }
|
|
||||||||||||
|
Reimplemented from ScanFrame. Definition at line 221 of file ScanFrameTwoTrack.cxx. References fQoverP, fShwEne, and fTrkEne. 00221 {
00222
00223 if ( attribute == "QoverP" ) fQoverP = value;
00224 if ( attribute == "TrkEne" ) fTrkEne = value;
00225 if ( attribute == "ShwEne" ) fShwEne = value;
00226
00227 }
|
|
||||||||||||
|
Reimplemented from ScanFrame. Definition at line 214 of file ScanFrameTwoTrack.cxx. References fNumShw, and fNumTrk. 00214 {
00215
00216 if ( attribute == "NumTrk" ) fNumTrk = value;
00217 if ( attribute == "NumShw" ) fNumShw = value;
00218
00219 }
|
|
|
Definition at line 230 of file ScanFrameTwoTrack.cxx. References fMissTk1PlnOutUwidget, fMissTk1PlnTotUwidget, fMissTk1U, and fMissTk1Uwidget. 00230 {
00231 fMissTk1U = fMissTk1Uwidget->IsDown();
00232 fMissTk1PlnOutUwidget->SetState(fMissTk1U);
00233 fMissTk1PlnTotUwidget->SetState(fMissTk1U);
00234 if ( ! fMissTk1U ) {
00235 fMissTk1PlnOutUwidget->SetIntNumber(0);
00236 fMissTk1PlnTotUwidget->SetIntNumber(0);
00237 }
00238 }
|
|
|
Definition at line 240 of file ScanFrameTwoTrack.cxx. References fMissTk1PlnOutVwidget, fMissTk1PlnTotVwidget, fMissTk1V, and fMissTk1Vwidget. 00240 {
00241 fMissTk1V = fMissTk1Vwidget->IsDown();
00242 fMissTk1PlnOutVwidget->SetState(fMissTk1V);
00243 fMissTk1PlnTotVwidget->SetState(fMissTk1V);
00244 if ( ! fMissTk1V ) {
00245 fMissTk1PlnOutVwidget->SetIntNumber(0);
00246 fMissTk1PlnTotVwidget->SetIntNumber(0);
00247 }
00248 }
|
|
|
Definition at line 250 of file ScanFrameTwoTrack.cxx. References fMissTk2PlnOutUwidget, fMissTk2PlnTotUwidget, fMissTk2U, and fMissTk2Uwidget. 00250 {
00251 fMissTk2U = fMissTk2Uwidget->IsDown();
00252 fMissTk2PlnOutUwidget->SetState(fMissTk2U);
00253 fMissTk2PlnTotUwidget->SetState(fMissTk2U);
00254 if ( ! fMissTk2U ) {
00255 fMissTk2PlnOutUwidget->SetIntNumber(0);
00256 fMissTk2PlnTotUwidget->SetIntNumber(0);
00257 }
00258 }
|
|
|
Definition at line 260 of file ScanFrameTwoTrack.cxx. References fMissTk2PlnOutVwidget, fMissTk2PlnTotVwidget, fMissTk2V, and fMissTk2Vwidget. 00260 {
00261 fMissTk2V = fMissTk2Vwidget->IsDown();
00262 fMissTk2PlnOutVwidget->SetState(fMissTk2V);
00263 fMissTk2PlnTotVwidget->SetState(fMissTk2V);
00264 if ( ! fMissTk2V ) {
00265 fMissTk2PlnOutVwidget->SetIntNumber(0);
00266 fMissTk2PlnTotVwidget->SetIntNumber(0);
00267 }
00268 }
|
|
|
|
|
Reimplemented from ScanFrame. Definition at line 338 of file ScanFrameTwoTrack.cxx. References fBestRange, fFakeTk1U, fFakeTk1V, fFakeTk2U, fFakeTk2V, fMissTk1PlnOutU, fMissTk1PlnOutV, fMissTk1PlnTotU, fMissTk1PlnTotV, fMissTk1U, fMissTk1V, fMissTk2PlnOutU, fMissTk2PlnOutV, fMissTk2PlnTotU, fMissTk2PlnTotV, fMissTk2U, fMissTk2V, fNumShw, fNumTrk, fQoverP, fShwEne, fTk1Kink, fTk2Kink, fTkSwap, and fTrkEne. 00338 {
00339
00340 out
00341 << fFakeTk1U << " "
00342 << fFakeTk2U << " "
00343
00344 << fMissTk1U << " "
00345 << fMissTk2U << " "
00346
00347 << fMissTk1PlnOutU << " "
00348 << fMissTk1PlnTotU << " "
00349 << fMissTk2PlnOutU << " "
00350 << fMissTk2PlnTotU << " "
00351
00352 << fFakeTk1V << " "
00353 << fFakeTk2V << " "
00354
00355 << fMissTk1V << " "
00356 << fMissTk2V << " "
00357
00358 << fMissTk1PlnOutV << " "
00359 << fMissTk1PlnTotV << " "
00360 << fMissTk2PlnOutV << " "
00361 << fMissTk2PlnTotV << " "
00362
00363 << fTk1Kink << " "
00364 << fTk2Kink << " "
00365 << fTkSwap << " "
00366
00367 << fNumTrk << " "
00368 << fNumShw << " "
00369 << fQoverP << " "
00370 << '"' << fBestRange << '"' << " "
00371 << fTrkEne << " "
00372 << fShwEne << " "
00373
00374 ;
00375
00376 }
|
|
|
Definition at line 98 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), PassChar(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 72 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Definition at line 49 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 73 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 50 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 74 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 51 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 75 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 52 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 86 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 63 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk1U(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 87 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 64 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk1V(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 88 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 65 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk1U(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 89 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 66 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk1V(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 77 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ProcMissTk1U(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 54 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk1U(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 78 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ProcMissTk1V(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 55 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk1V(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 90 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 67 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk2U(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 91 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 68 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk2V(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 92 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 69 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk2U(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 93 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 70 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk2V(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 79 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ProcMissTk2U(), ResetDisplay(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 56 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk2U(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 80 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ProcMissTk2V(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 57 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ProcMissTk2V(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 96 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), PassInt(), and WriteScanSheet(). |
|
|
Definition at line 95 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), PassInt(), and WriteScanSheet(). |
|
|
Definition at line 97 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), PassFloat(), and WriteScanSheet(). |
|
|
Definition at line 100 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), PassFloat(), and WriteScanSheet(). |
|
|
Definition at line 82 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 59 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 83 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 60 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 84 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), ResyncData(), and WriteScanSheet(). |
|
|
Transient, do not output.
Definition at line 61 of file ScanFrameTwoTrack.h. Referenced by BuildScanSheet(), ResetDisplay(), and ResyncData(). |
|
|
Definition at line 99 of file ScanFrameTwoTrack.h. Referenced by InitScanSheet(), PassFloat(), and WriteScanSheet(). |
1.3.9.1