#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "tutRunSimulation.hxx" namespace tut { struct baseCheckGeom { /// Data type to store name of overlapping volume and amount of overlap typedef std::pair OverVal; /// Map from volume name to overlap details typedef std::map OverlapVolumes; baseCheckGeom() { // Run before each test. GenerateSIMG4Events("CheckGeom"); } ~baseCheckGeom() { // Run after each test. } }; // Declare the test typedef test_group::object testCheckGeom; test_group groupCheckGeom("CheckGeom"); // Make sure there are events. template<> template<> void testCheckGeom::test<1> () { ensure("COMET MC Events exist", SimG4::Events.size()>0); ensure("TGeoManager is initialized", gGeoManager); gGeoManager->CdTop(); } };