#include <ScintModule.h>
Public Member Functions | |
| ScintModule () | |
| ScintModule (UgliScintMdlHandle scint_module_handle) | |
| ~ScintModule () | |
| void | UpdateOffsets (void) |
| void | ClearStatistics (void) |
| void | AccumResid (double resid) |
| double | GetOffset () |
Private Member Functions | |
| ScintModule (const ScintModule &rhs) | |
| ScintModule & | operator= (const ScintModule &rhs) |
Private Attributes | |
| double | fCurRes |
| double | fCurResSqr |
| int | fNumTracks |
| double | fOffset |
|
|
|
|
|
Definition at line 3 of file ScintModule.cxx. 00004 : fCurRes(0), 00005 fCurResSqr(0), 00006 fNumTracks(0), 00007 fOffset(0) 00008 { 00009 }
|
|
|
Definition at line 11 of file ScintModule.cxx. 00012 {
00013 }
|
|
|
|
|
|
Definition at line 15 of file ScintModule.cxx. References fCurRes, and fCurResSqr. Referenced by StraightTrackAlignment::FitTrackLessOne(). 00016 {
00017 fCurRes += resid;
00018 fCurResSqr += resid*resid;
00019 ++fNumTracks;
00020 }
|
|
|
Definition at line 29 of file ScintModule.cxx. References fCurRes, fCurResSqr, and fNumTracks. Referenced by StraightTrackAlignment::ApplyAllOffsets(). 00030 {
00031 fCurRes = 0;
00032 fCurResSqr = 0;
00033 fNumTracks = 0;
00034 }
|
|
|
Definition at line 38 of file ScintModule.h. Referenced by StraightTrackAlignment::FitTrackLessOne(). 00038 { return fOffset; }
|
|
|
|
|
|
Definition at line 22 of file ScintModule.cxx. References fCurRes, and fOffset. Referenced by StraightTrackAlignment::ApplyAllOffsets().
|
|
|
Definition at line 46 of file ScintModule.h. Referenced by AccumResid(), ClearStatistics(), and UpdateOffsets(). |
|
|
Definition at line 46 of file ScintModule.h. Referenced by AccumResid(), and ClearStatistics(). |
|
|
Definition at line 48 of file ScintModule.h. Referenced by ClearStatistics(). |
|
|
Definition at line 50 of file ScintModule.h. Referenced by UpdateOffsets(). |
1.3.9.1