/// @file AllPixSteppingVerbose.hh /// @brief Header file for the verbose stepping class. #ifndef AllPixSteppingVerbose_h #define AllPixSteppingVerbose_h 1 // GEANT4 include statements. #include "G4SteppingVerbose.hh" // Standard include statements. #include #include using namespace std; /// @brief Class for the verbose simulation steps. class AllPixSteppingVerbose : public G4SteppingVerbose { public: /// @brief The constructor. AllPixSteppingVerbose(); /// @brief The destructor. ~AllPixSteppingVerbose(); void StepInfo(); void TrackingStarted(); private: // TW commented out 2014-02-17 // Plain output used for connectivity purposes // e.x. connection with the theoryicists ;) // ofstream * m_simplePlainOutput; }; #endif