EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairBoxSet.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairBoxSet.cxx
1 // -------------------------------------------------------------------------
2 // ----- FairBoxSet source file -----
3 // ----- Created 03/01/08 by M. Al-Turany -----
4 // -------------------------------------------------------------------------
5 
6 #include "FairBoxSet.h"
7 #include "FairBoxSetDraw.h"
8 
9 #include <iostream>
10 using std::cout;
11 using std::endl;
12 
13 // ----- Standard constructor ------------------------------------------
14 FairBoxSet::FairBoxSet(FairBoxSetDraw* drawer, const char* name, const char* t)
15  : TEveBoxSet(name, t), fDraw(drawer)
16 {}
17 
19 
20