// $Header: /cvs/gled-1.2/GledCore/Stones/ZHistoManager.h,v 1.3 2005/03/11 17:50:16 matevz Exp $ // Copyright (C) 1999-2005, Matevz Tadel. All rights reserved. // This file is part of GLED, released under GNU General Public License version 2. // For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/. #ifndef GLED_ZHistoManager_H #define GLED_ZHistoManager_H #include #include #include #include #ifndef __CINT__ typedef map mHisto2ZHistoDir_t; typedef map::iterator mHisto2ZHistoDir_i; #endif // ?? Should subclass SaturnService class ZHistoManager : public TFile { private: #ifndef __CINT__ mHisto2ZHistoDir_t mHisto2HistoDir; #endif public: ZHistoManager(const char* fname, Option_t* option="", const char* ftitle="", Int_t compress = 1); virtual ~ZHistoManager(); void RegisterGroup(ZHisto *n, const Text_t* group); ZHistoDir* GetDir(ZHisto* n); ZHistoGroup* GetGroup(ZHisto* n, const Text_t* group); #include "ZHistoManager.h7" ClassDef(ZHistoManager, 0) }; // endclass ZHistoManager #endif