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

Public Member Functions | |
| CandTrackSRNtuple () | |
| CandTrackSRNtuple (const CandTrackSRHandle &track) | |
| virtual | ~CandTrackSRNtuple () |
| virtual std::ostream & | Print (std::ostream &os) const |
| virtual void | Print (const Option_t *option="") const |
| virtual void | Clear (Option_t *option="") |
Private Attributes | |
| Int_t | fNTimeFitDigit |
|
|
Definition at line 28 of file CandTrackSRNtuple.h. References fNTimeFitDigit. 00028 : fNTimeFitDigit(-1) {} // def const'r
|
|
|
Definition at line 27 of file CandTrackSRNtuple.cxx. References fNTimeFitDigit, and CandTrackSRHandle::GetNTimeFitDigit(). 00027 : 00028 NtpCandTrack(track),fNTimeFitDigit(-1) { 00029 // 00030 // Purpose: Constructor creates an ntuple from an existing 00031 // CandTrackSRHandle. 00032 // 00033 // Arguments: reference to CandTrackSRHandle (or derived class) object. 00034 // 00035 // Return: n/a. 00036 // 00037 // Contact: S. Kasahara 00038 // 00039 00040 fNTimeFitDigit = track.GetNTimeFitDigit(); 00041 00042 }
|
|
|
Definition at line 31 of file CandTrackSRNtuple.h. 00031 {}
|
|
|
Reimplemented from NtpCandTrack. Definition at line 38 of file CandTrackSRNtuple.h. References NtpCandTrack::Clear(), and option. 00038 { NtpCandTrack::Clear(option); }
|
|
|
Definition at line 62 of file CandTrackSRNtuple.cxx. References Print(). 00062 {
00063 //
00064 // Purpose: Print track in form supported by TObject::Print.
00065 //
00066 // Arguments: option (not used).
00067 //
00068 // Return: none.
00069 //
00070 // Contact: S. Kasahara
00071 //
00072
00073 Print(std::cout);
00074 return;
00075
00076 }
|
|
|
Reimplemented from NtpCandTrack. Definition at line 44 of file CandTrackSRNtuple.cxx. References fNTimeFitDigit, and NtpCandTrack::Print(). Referenced by Print(). 00044 {
00045 //
00046 // Purpose: Print status of ntuple record on ostream.
00047 //
00048 // Arguments: os ostream to display on.
00049 //
00050 // Return: ostream reference.
00051 //
00052 // Contact: S. Kasahara
00053 //
00054
00055 NtpCandTrack::Print(os);
00056 os << "NTimeFitDigit " << fNTimeFitDigit << "." << endl;
00057
00058 return os;
00059
00060 }
|
|
|
Definition at line 44 of file CandTrackSRNtuple.h. Referenced by CandTrackSRNtuple(), and Print(). |
1.3.9.1