ROOT logo
// $Id: AEVSite.h 2250 2009-11-11 18:37:57Z matevz $

// Copyright (C) 1999-2008, 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 AliEnViz_AEVSite_H
#define AliEnViz_AEVSite_H

#include <Glasses/ZGlass.h>

class CosmicBall;

class AEVSite : public ZGlass
{
  MAC_RNR_FRIENDS(AEVSite);

  friend class AEVManager;
  friend class AEVAlienUI;

private:
  void _init();

protected:
  // ZGlass::mName used for siteName.
  // ZGlass::mTitle is sitename@location (unless the two are equal, then as name).

  TString	mLocation;	// X{GS} 7 TextOut()
  TString	mDomain;	// X{GS} 7 TextOut()

  // Int_t	mSiteId;	// X{GS} 7 ValOut()
  // Int_t	mMasterHostId;	// X{GS} 7 ValOut()

  Float_t	mLatitude;	// X{GS} 7 ValOut()
  Float_t	mLongitude;	// X{GS} 7 ValOut()

  Int_t         mSiteSize;      // X{GS} 7 ValOut()

  Int_t         mJobsStarted;   // X{GS} 7 ValOut()
  Int_t         mJobsRunning;   // X{GS} 7 ValOut()
  Int_t         mJobsSaving;    // X{GS} 7 ValOut()
  Int_t         mJobsDone;      // X{GS} 7 ValOut()
  Int_t         mJobsError;     // X{GS} 7 ValOut()

  Int_t         mEventsAll;     // X{GE} 7 ValOut()
  Int_t         mEventsDone;    // X{GE} 7 ValOut()
  Int_t         mEventsFrac;    // X{G}  7 ValOut()

  ZLink<CosmicBall> mBallViz;   // X{GS} L{}
  Bool_t            bBallOnStage; //!

  void set_event_frac();

public:
  AEVSite(const Text_t* n="AEVSite", const Text_t* t=0) : ZGlass(n,t) { _init(); }
  virtual ~AEVSite() {}

  void SetEventsAll(Int_t ea);
  void SetEventsDone(Int_t ed);

#include "AEVSite.h7"
  ClassDef(AEVSite, 1);
}; // endclass AEVSite


#endif
 AEVSite.h:1
 AEVSite.h:2
 AEVSite.h:3
 AEVSite.h:4
 AEVSite.h:5
 AEVSite.h:6
 AEVSite.h:7
 AEVSite.h:8
 AEVSite.h:9
 AEVSite.h:10
 AEVSite.h:11
 AEVSite.h:12
 AEVSite.h:13
 AEVSite.h:14
 AEVSite.h:15
 AEVSite.h:16
 AEVSite.h:17
 AEVSite.h:18
 AEVSite.h:19
 AEVSite.h:20
 AEVSite.h:21
 AEVSite.h:22
 AEVSite.h:23
 AEVSite.h:24
 AEVSite.h:25
 AEVSite.h:26
 AEVSite.h:27
 AEVSite.h:28
 AEVSite.h:29
 AEVSite.h:30
 AEVSite.h:31
 AEVSite.h:32
 AEVSite.h:33
 AEVSite.h:34
 AEVSite.h:35
 AEVSite.h:36
 AEVSite.h:37
 AEVSite.h:38
 AEVSite.h:39
 AEVSite.h:40
 AEVSite.h:41
 AEVSite.h:42
 AEVSite.h:43
 AEVSite.h:44
 AEVSite.h:45
 AEVSite.h:46
 AEVSite.h:47
 AEVSite.h:48
 AEVSite.h:49
 AEVSite.h:50
 AEVSite.h:51
 AEVSite.h:52
 AEVSite.h:53
 AEVSite.h:54
 AEVSite.h:55
 AEVSite.h:56
 AEVSite.h:57
 AEVSite.h:58
 AEVSite.h:59
 AEVSite.h:60
 AEVSite.h:61
 AEVSite.h:62
 AEVSite.h:63
 AEVSite.h:64
 AEVSite.h:65
 AEVSite.h:66