EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairBoxSet.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairBoxSet.h
1 // -------------------------------------------------------------------------
2 // ----- FairBoxSet header file -----
3 // ----- Created 26/03/09 by T. Stockmanns -----
4 // -------------------------------------------------------------------------
5 
6 
18 #ifndef FAIRBOXSET_H
19 #define FAIRBOXSET_H
20 
21 
22 #include "TEveBoxSet.h"
23 #include "FairBoxSetDraw.h"
24 
25 
26 class FairBoxSet : public TEveBoxSet
27 {
28 
29  public:
30 
33  FairBoxSet(FairBoxSetDraw* drawer, const char* name = "FairBoxSet", const char* t = "");
34 
35  void SetTimeWindowPlus(Double_t time) {fDraw->SetTimeWindowPlus(time);}
37 
38  Double_t GetTimeWindowPlus() {return fDraw->GetTimeWindowPlus();}
40 
41 
43  virtual ~FairBoxSet() {};
44 
45 
46 
47  protected:
48 
49  private:
51 
52  FairBoxSet(const FairBoxSet&);
54 
56 
57 };
58 
59 
60 #endif