StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StiIstDetectorGroup.cxx
1 #include <stdexcept>
2 #include "StEvent.h"
3 #include "StMcEvent.hh"
4 #include "StiIstDetectorGroup.h"
5 #include "StiIstDetectorBuilder.h"
6 #include "StiIstHitLoader.h"
7 
8 
9 StiIstDetectorGroup::StiIstDetectorGroup(bool active)
10  : StiDetectorGroup<StEvent>("Ist",
11  active?new StiIstHitLoader():0,
12  new StiIstDetectorBuilder(active))
13 {}
14 
15 StiIstDetectorGroup::~StiIstDetectorGroup()
16 {}
17