#ifndef __INCLUDE_TwigTkRecHits__ #define __INCLUDE_TwigTkRecHits__ #include #include "Visualisation/OrcaVis/interface/AutoTwig.h" #include "Ig_Extensions/IgGeant3/interface/G3Pars.h" #include "CommonDet/BasicDet/interface/DetUnit.h" #include #include /** * Graphical/GUI representation of the Forward Silicon Detectors * * \author Stephane PERRIES, Eric Chabanat 26/04/2001 */ class TwigTkRecHits : public AutoTwig { public: typedef IgQtTwig inherited; explicit TwigTkRecHits(IgQtTwig* parent, SbString nm, bool b=true, bool c=false) : AutoTwig(parent, nm, b, c) { outSimHitF = new ofstream("SimHitF.dat",ios::out); } void drawMe(); private: ofstream* outSimHitF; }; #endif