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

Public Member Functions | |
| CandFitTrackCam () | |
Static Public Member Functions | |
| CandFitTrackCamHandle | MakeCandidate (AlgHandle &ah, CandContext &ch) |
Protected Member Functions | |
| CandFitTrackCam (AlgHandle &ah) | |
| CandFitTrackCam (AlgHandle &ah, CandHandle &ch, CandContext &cx) | |
| CandFitTrackCam (const CandFitTrackCam &rhs) | |
| virtual | ~CandFitTrackCam () |
| virtual void | CreateLocalHandle () |
| virtual CandFitTrackCam * | Dup () const |
Private Attributes | |
| Double_t | fEQP_rangebiased |
| Double_t | fQP_rangebiased |
Friends | |
| class | CandFitTrackCamHandle |
|
|
Definition at line 15 of file CandFitTrackCam.cxx. Referenced by Dup(), and MakeCandidate(). 00016 : fQP_rangebiased(0.) { 00017 }
|
|
|
Definition at line 19 of file CandFitTrackCam.cxx. 00020 : CandFitTrack(ah), 00021 fEQP_rangebiased(0.), 00022 fQP_rangebiased(0.) 00023 00024 { 00025 }
|
|
||||||||||||||||
|
Definition at line 27 of file CandFitTrackCam.cxx. References CreateLocalHandle(), and AlgHandle::RunAlg(). 00028 : CandFitTrack(ah), 00029 fEQP_rangebiased(0.), 00030 fQP_rangebiased(0.) 00031 { 00032 this->CreateLocalHandle(); 00033 { 00034 CandFitTrackCamHandle a_handle(this); 00035 ch = a_handle; 00036 } 00037 ah.RunAlg(ch,cx); 00038 }
|
|
|
Definition at line 40 of file CandFitTrackCam.cxx. 00041 : CandFitTrack(rhs), 00042 fEQP_rangebiased(rhs.fEQP_rangebiased), 00043 fQP_rangebiased(rhs.fQP_rangebiased) 00044 { 00045 }
|
|
|
Definition at line 47 of file CandFitTrackCam.cxx. 00048 {
00049 }
|
|
|
Reimplemented from CandFitTrack. Definition at line 51 of file CandFitTrackCam.cxx. References CandFitTrackCamHandle, and CandBase::SetLocalHandle(). Referenced by CandFitTrackCam(), and Dup(). 00052 {
00053 this->SetLocalHandle(new CandFitTrackCamHandle(this));
00054 }
|
|
|
Reimplemented from CandFitTrack. Definition at line 56 of file CandFitTrackCam.cxx. References CandBase::AddDaughterLink(), CandFitTrackCam(), CreateLocalHandle(), and CandBase::GetDaughterIterator(). 00057 {
00058 CandFitTrackCam* newone = new CandFitTrackCam(*this);
00059 newone->CreateLocalHandle();
00060 TIter iter = this->GetDaughterIterator();
00061 CandHandle* ch;
00062 while ((ch=(CandHandle*)iter())) newone->AddDaughterLink(*ch);
00063 return newone;
00064 }
|
|
||||||||||||
|
Reimplemented from CandFitTrack. Definition at line 66 of file CandFitTrackCam.cxx. References CandFitTrackCam(). Referenced by AlgFitTrackCamList::RunAlg(). 00067 {
00068 CandFitTrackCamHandle a_handle;
00069 new CandFitTrackCam(ah,a_handle,cx);
00070 return a_handle;
00071 }
|
|
|
Definition at line 21 of file CandFitTrackCam.h. Referenced by CreateLocalHandle(). |
|
|
Definition at line 39 of file CandFitTrackCam.h. |
|
|
Definition at line 40 of file CandFitTrackCam.h. |
1.3.9.1