Public Member Functions | |
| is_in_tztpos_window (CandStripHandle *ref, double dt, double dpln, double tpos) | |
| bool | operator() (CandStripHandle *csh) |
Public Attributes | |
| CandStripHandle * | _ref |
| double | _dt |
| double | _dpln |
| double | _tpos |
|
||||||||||||||||||||
|
Definition at line 113 of file AltAlgSliceList.cxx. References _dpln, _dt, _ref, and _tpos. 00114 : 00115 _ref(ref), _dt(dt), _dpln(dpln), _tpos(tpos) {} bool operator()(CandStripHandle * csh) {
|
|
|
Definition at line 116 of file AltAlgSliceList.cxx. References _dpln, _dt, _ref, abs(), CandStripHandle::GetCorrBegTime(), CandStripHandle::GetPlane(), CandStripHandle::GetPlaneView(), and CandStripHandle::GetTPos(). 00116 {
00117 if( csh->GetPlaneView() != _ref->GetPlaneView() ) return false;
00118 return fabs(csh->GetCorrBegTime() - _ref->GetCorrBegTime()) <= _dt &&
00119 abs( csh->GetPlane() - _ref->GetPlane()) <= _dpln &&
00120 fabs( csh->GetTPos() - _ref->GetTPos()) <= _tpos;
00121 }
|
|
|
Definition at line 112 of file AltAlgSliceList.cxx. Referenced by is_in_tztpos_window(), and operator()(). |
|
|
Definition at line 112 of file AltAlgSliceList.cxx. Referenced by is_in_tztpos_window(), and operator()(). |
|
|
Definition at line 111 of file AltAlgSliceList.cxx. Referenced by is_in_tztpos_window(), and operator()(). |
|
|
Definition at line 112 of file AltAlgSliceList.cxx. Referenced by is_in_tztpos_window(). |
1.3.9.1