#include #include #include #include "tutRunSimulation.hxx" #include #include #include #include #include #include #include "IG4HitSegment.hxx" using namespace COMET; namespace tut { struct basePersistencyManager { basePersistencyManager() { // Run before each test. GenerateSIMG4Events("PersistencyManager"); } ~basePersistencyManager() { // Run after each test. } }; // Declare the test typedef test_group::object testPersistencyManager; test_group groupPersistencyManager("PersistencyManager"); /// Check that all trajectories associated with hits are saved template<> template<> void testPersistencyManager::test<1> () { // Event 8 is a 1 GeV positron with a 50MeV gamma cut. ICOMETEvent* event = SimG4::Events[8]; auto trajs = event->Get("truth/G4Trajectories"); auto hits = event->Get("truth/g4Hits/TestTestSurface_0"); ensure("TestSurface has a hit container", hits); for (IG4VHit* vhit: *hits) { auto hit = dynamic_cast(vhit); if (!hit) continue; // Verify that the hit's trajectory exists in the trajectory container auto traj_it = trajs->find(hit->GetPrimaryId()); ensure("Trajectory of HitSegment exists in trajectory container", traj_it != trajs->end()); } } /// Check that all trajectories are saved in a "saveAllTraj" run template<> template<> void testPersistencyManager::test<2>() { // Sample 9 has "/db/set/saveAllTraj true" on a lead surface // Event 8 is a 1 GeV positron ICOMETEvent* event = SimG4::Events[SimG4::StartEvents[9] + 8]; auto trajs = event->Get("truth/G4Trajectories"); // To determine whether all trajectories were saved, we check that // trajectory IDs are all present between the smallest one (1) and // the largest one. std::vector track_ids; for (auto traj: *trajs) { track_ids.push_back(traj.first); } // Find max ID int max_id = 0; for (int id: track_ids) { if (id > max_id) max_id = id; } // Ensure that every integer between 1 and max_id is present in track_ids for (int i=1; i template<> void testPersistencyManager::test<3>() { // Event 8 is a 1 GeV positron ICOMETEvent* event = SimG4::Events[8]; auto prims = event->Get("truth/G4PrimVertex00"); ensure("Event has a primary vertex container", prims); ensure("Event only has one primary vertex", prims->size() == 1); auto& prim = (*prims)[0]; int pid = prim.GetPrimaryParticles()[0].GetPDGCode(); ensure("Primary particle is a positron", pid == -11); double E = prim.GetPrimaryParticles()[0].GetMomentum().E(); ensure("Primary particle has 1 GeV energy", fabs(E - 1000 * unit::MeV) < 10 * unit::eV); } };