source: Sophya/trunk/SophyaPI/PIext/ntupintf.h@ 314

Last change on this file since 314 was 295, checked in by ercodmgr, 26 years ago

Mise aux "normes" version DPC/Planck - Gestion des objets a travers

un adaptateur/interface NTuple par NamedObjMgr.
Enregistrement d'objets et de l'adaptateur (I/O PPersist, display, ...)
par ServNobjMgr .... Reza 13/05/99

File size: 493 bytes
Line 
1// This may look like C code, but it is really -*- C++ -*-
2// Interface de type NTuple Reza 05/99
3// LAL-IN2P3/CNRS CEA-DAPNIA
4
5#ifndef NTUPLEINTERFACE_H_SEEN
6#define NTUPLEINTERFACE_H_SEEN
7#include "machdefs.h"
8
9class NTupleInterface {
10public:
11 virtual ~NTupleInterface() { }
12 virtual uint_4 NbLines()=0;
13 virtual uint_4 NbColumns()=0;
14 virtual r_8 * GetLineD(int n)=0;
15 virtual string VarList_C(const char* nomx=NULL)=0;
16};
17
18#endif
Note: See TracBrowser for help on using the repository browser.