Changeset 344 in Sophya for trunk/SophyaPI/PIext/nomgfdadapter.cc
- Timestamp:
- Aug 2, 1999, 6:52:49 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomgfdadapter.cc
r339 r344 52 52 53 53 /* --Methode-- */ 54 NTupleInterface* NOMAdapter_GeneralFitData::GetNTupleInterface( )54 NTupleInterface* NOMAdapter_GeneralFitData::GetNTupleInterface(bool& adel) 55 55 { 56 return( new NTupInt_GeneralFitData(mG) ); 56 adel = false; 57 return(mG); 57 58 } 58 59 59 // -------------------------------------------------------------60 61 /* --Methode-- */62 NTupInt_GeneralFitData::NTupInt_GeneralFitData(GeneralFitData* g)63 {64 mG = g;65 }66 67 /* --Methode-- */68 NTupInt_GeneralFitData::~NTupInt_GeneralFitData()69 {70 }71 72 /* --Methode-- */73 uint_4 NTupInt_GeneralFitData::NbLines() const74 {75 return(mG->NbLines());76 }77 78 /* --Methode-- */79 uint_4 NTupInt_GeneralFitData::NbColumns() const80 {81 return(mG->NbColumns());82 }83 84 /* --Methode-- */85 r_8* NTupInt_GeneralFitData::GetLineD(int n) const86 {87 return(mG->GetLineD(n));88 }89 90 /* --Methode-- */91 string NTupInt_GeneralFitData::VarList_C(const char* nx) const92 {93 return(mG->VarList_C(nx));94 }
Note:
See TracChangeset
for help on using the changeset viewer.