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

Public Member Functions | |
| RecPhysicsHeader () | |
| RecPhysicsHeader (const VldContext &vld, Int_t run, Short_t subrun, Short_t runtype, UInt_t errorcode, Int_t snarl, UInt_t trigsrc, Int_t timeframe, Int_t spilltype) | |
| virtual | ~RecPhysicsHeader () |
| Int_t | GetSnarl () const |
| UInt_t | GetTrigSrc () const |
| Int_t | GetTimeFrame () const |
| Int_t | GetRemoteSpillType () const |
| virtual std::ostream & | Print (std::ostream &os) const |
| virtual void | Print (Option_t *option="") const |
Private Attributes | |
| Int_t | fSnarl |
| UInt_t | fTrigSrc |
| Int_t | fTimeFrame |
| Int_t | fRemoteSpillType |
|
|
Definition at line 28 of file RecPhysicsHeader.cxx. 00029 : RecDataHeader(),fSnarl(-1),fTrigSrc(0xFFFF),fTimeFrame(-1), 00030 fRemoteSpillType(-1) { 00031 // Default constructor 00032 }
|
|
||||||||||||||||||||||||||||||||||||||||
|
Definition at line 34 of file RecPhysicsHeader.cxx. References run(). 00039 : RecDataHeader(vldc,run,subrun,runtype,errorcode),fSnarl(snarl), 00040 fTrigSrc(trigsrc),fTimeFrame(timeframe),fRemoteSpillType(spilltype) 00041 { 00042 // Normal constructor 00043 }
|
|
|
Definition at line 45 of file RecPhysicsHeader.cxx. 00046 {
00047 // Destructor
00048 }
|
|
|
Definition at line 35 of file RecPhysicsHeader.h. Referenced by ANtpEventInfoAna::Analyze(), ANtpRecoNtpManipulator::ANtpRecoNtpManipulator(), MadTVAnalysis::CreatePAN(), MadMKAnalysis::CreatePAN(), MadAnalysis::CreatePAN(), NuExtraction::ExtractGeneralInfo(), NtpStModule::Get(), Print(), NtpTHModule::Reco(), NtpSRModule::Reco(), and NtpMCModule::Reco(). 00035 { return fRemoteSpillType; }
|
|
|
|
Definition at line 34 of file RecPhysicsHeader.h. Referenced by NuExtraction::ExtractGeneralInfo(), NtpStModule::Get(), DetSim::Get(), Print(), NtpTHModule::Reco(), NtpSRModule::Reco(), NtpMCModule::Reco(), Anp::FillHeader::Run(), MadTestAnalysis::SingleTimeFrame(), MadPIDAnalysis::SingleTimeFrame(), and MadDpAnalysis::SingleTimeFrame(). 00034 { return fTimeFrame; }
|
|
|
|
Reimplemented from RecDataHeader. Reimplemented in RecCandHeader, and SimSnarlHeader. Definition at line 72 of file RecPhysicsHeader.cxx. References Print(). 00072 {
00073 //
00074 // Purpose: Print header in form supported by TObject::Print.
00075 //
00076 // Arguments: option (not used)
00077 //
00078 // Return: none.
00079 //
00080 // Contact: S. Kasahara
00081 //
00082 // Notes:This version is required because overridden Print(std::ostream& os)
00083 // hides base class version of this method.
00084 //
00085
00086 Print(std::cout);
00087 return;
00088
00089 }
|
|
|
Reimplemented from RecDataHeader. Reimplemented in RecCandHeader, and SimSnarlHeader. Definition at line 50 of file RecPhysicsHeader.cxx. References GetRemoteSpillType(), GetSnarl(), GetTimeFrame(), GetTrigSrc(), and RecDataHeader::Print(). Referenced by SimSnarlHeader::Print(), Print(), and RecCandHeader::Print(). 00050 {
00051 //
00052 // Purpose: Print header on ostream.
00053 //
00054 // Arguments: os ostream to display on.
00055 //
00056 // Return: ostream reference.
00057 //
00058 // Contact: S. Kasahara
00059 //
00060
00061 RecDataHeader::Print(os);
00062 os << " Snarl " << GetSnarl()
00063 << std::hex << std::setfill('0')
00064 << " TrigSrc 0x" << std::setw(8) << GetTrigSrc()
00065 << std::setfill(' ') << std::dec
00066 << " TimeFrame " << this->GetTimeFrame()
00067 << " SpillType " << this->GetRemoteSpillType();
00068
00069 return os;
00070 }
|
|
|
Definition at line 45 of file RecPhysicsHeader.h. |
|
|
Definition at line 42 of file RecPhysicsHeader.h. |
|
|
Definition at line 44 of file RecPhysicsHeader.h. |
|
|
Definition at line 43 of file RecPhysicsHeader.h. |
1.3.9.1