// @(#)root/eve:$Id: TEveEventManager.h 23321 2008-04-18 18:15:27Z matevz $
// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007

/*************************************************************************
 * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TEveEventManager
#define ROOT_TEveEventManager

#include "TEveElement.h"

#include <vector>

class TEveEventManager : public TEveElementList
{
protected:
   std::vector<TString>  fNewEventCommands;

public:
   TEveEventManager(const Text_t* n="TEveEventManager", const Text_t* t="");
   virtual ~TEveEventManager() {}

   std::vector<TString>& GetNewEventCommands() { return fNewEventCommands; }

   virtual void Open() {}
   virtual void GotoEvent(Int_t /*event*/) {}
   virtual void NextEvent() {}
   virtual void PrevEvent() {}
   virtual void Close() {}

   virtual void AfterNewEventLoaded();

   virtual void AddNewEventCommand(const TString& cmd);
   virtual void RemoveNewEventCommand(const TString& cmd);
   virtual void ClearNewEventCommands();

   ClassDef(TEveEventManager, 1); // Base class for event management and navigation.
};

#endif

Last change: Wed Jun 25 08:36:53 2008
Last generated: 2008-06-25 08:36

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.