source: Sophya/trunk/SophyaPI/PIext/nomgfdadapter.h@ 344

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

1/ Extension de fonctionalites de gestion de repertoires (Lock, ...)
2/ Plus de NTupIntf_Adapter quand les objets heritent de NTupleInterface
3/ Support pour affichage info texte, ds PINtuple et PIStarList

File size: 985 bytes
Line 
1// This may look like C code, but it is really -*- C++ -*-
2// Adaptateur d objets (pour NamedObjMgr) pour GeneralFitData
3// cmv 27/7/99
4// LAL-IN2P3/CNRS CEA-DAPNIA
5
6#ifndef NOMGFDADAPTER_H_SEEN
7#define NOMGFDADAPTER_H_SEEN
8
9#include "nomgadapter.h"
10#include "generaldata.h"
11
12//-------------------------------------------------------------------------
13// Class Adaptateur d'objet (Pour NamedObjMgr) d'objet GeneralFitData
14//-------------------------------------------------------------------------
15
16class NOMAdapter_GeneralFitData : public NObjMgrAdapter {
17public:
18 NOMAdapter_GeneralFitData(GeneralFitData* o = NULL);
19 virtual ~NOMAdapter_GeneralFitData();
20
21 virtual NObjMgrAdapter* Clone(AnyDataObj* o);
22
23 virtual void SavePPF(POutPersist& s, string const & nom);
24
25 virtual void Print(ostream& os);
26 virtual NTupleInterface* GetNTupleInterface(bool& adel);
27
28protected:
29 GeneralFitData* mG;
30};
31
32
33#endif
Note: See TracBrowser for help on using the repository browser.