#include #include #include #include #include #include #include "tutRunSimulation.hxx" #include "tutTestRT.hxx" #include "HEPUnits.hxx" #include "ICOMETEvent.hxx" #include "IG4HitMonitor.hxx" #include "IG4Trajectory.hxx" #include "IRooTrackerFile.hxx" #include "IG4PrimaryVertex.hxx" namespace tut { struct baseRooTracker { baseRooTracker() { // Run before each test. GenerateSIMG4Events("RooTracker"); } ~baseRooTracker() { // Run after each test. COMET::IRooTrackerFile::CloseAll(); } }; // Declare the test typedef test_group::object testRooTracker; test_group groupRooTracker("RooTracker"); // Check that the RooTracker files correctly save the information by // comparing the G4Hits that were created simultaneously template<> template<> void testRooTracker::test<1> () { // Create an RTChecker instance TestRT::RTChecker rtCheck(false); // Open the created RooTracker file COMET::IHandle savedFile = COMET::IRooTrackerFile::Open(SimG4::OutRooTrkr, "READ", "RooTrackerTree"); // Get the first entry we expect to have hits int thisEntry = SimG4::StartEvents[6]; // Loop over the events we want to check for (SimG4::EventVector::iterator e = SimG4::Events.begin() + thisEntry; e != SimG4::Events.begin() + SimG4::EndEvents[6]; ++e) { // Load up the rootracker entries savedFile->GetEntry(thisEntry); TestRT::Error anError = rtCheck.CheckRTOutput(&(*savedFile), *e); thisEntry++; // Check the return value for errors switch(anError){ case TestRT::kDiffSize : fail("There are the same number of particles in the" " rootracker file as there are that enter the" " black-hole volume"); case TestRT::kDiffData : fail("The contents of the RooTracker file are the same as the " " IG4Trajectories found in the oaEvents"); } } } // Check that the input rootracker file has not been changed by checking it // has the correct amount of entries template<> template<> void testRooTracker::test<2> () { // Open the created RooTracker file COMET::IHandle savedFile = COMET::IRooTrackerFile::Open(SimG4::InRooTrkr, "READ", "RooTrackerTree"); ensure_equals("The input rootracker file has the expected number of" " entries. NOTE: If this file is changed, please update" " the relevant SimG4::InRooTrkrNParts field", savedFile->GetEntries(), SimG4::InRooTrkrNParts); } // Check that the RooTracker events read in the correct primaries // * Check the oaEvent primaries have contiguous track IDs default // * Event IDs contiguous by default // * Input RooTracker file has non-trivial track ID indexing in at least // one event template<> template<> void testRooTracker::test<3> () { // Open the created RooTracker file COMET::IHandle savedFile = COMET::IRooTrackerFile::Open(SimG4::InRooTrkr, "READ", "RooTrackerTree"); // Track events int thisEntry; SimG4::EventVector::iterator strtEvt; SimG4::EventVector::iterator endEvt; bool foundNonContig = false; bool foundMisMatch = false; // Ensure index forcing is off on the first rootracker sample thisEntry = 0; strtEvt = SimG4::Events.begin() + SimG4::StartEvents[SimG4::StartEvents.size() - 2] + 1; endEvt = SimG4::Events.begin() + SimG4::EndEvents[SimG4::EndEvents.size() - 2]; // Loop over the events we want to check for (SimG4::EventVector::iterator e = strtEvt; e != endEvt; ++e) { // Load up the rootracker entries savedFile->GetEntry(thisEntry); TestRT::EventEntries rtParts(&(*savedFile)); ++thisEntry; // Ensure the sample persisted the event IDs ensure("RooTracker event ID and track ID persistence off by default", (*e)->GetEventId() != savedFile->GetEvtNum()); // Get the primary particles COMET::IHandle evtVtxCon = (*e)->Get("~/truth/G4PrimVertex00"); TestRT::EventEntries oaPrim(&*evtVtxCon); // Check that the track IDs are contiguous for the primary particles // and start from zero bool oaContig = oaPrim.CheckContigTrackIDs(); ensure("Track IDs are contiguous for the primary particles" " and start from one", oaContig); // Check that there are some track IDs that are non contiguous or // don't start from zero if (!foundNonContig) foundNonContig = rtParts.CheckContigTrackIDs(); // Check if the indexes in all events are all the same if (!foundMisMatch) foundMisMatch = rtParts.CompareTrackIDs(oaPrim); } // Ensure we found some non-trivial primary ID information, i.e. // something other than what would happen in the default "all primary // track IDs start from 1 and increase by 1 each time" ensure("Found stored RooTracker events with non-trivial track ID" " information", foundNonContig); // Ensure we found a mis-match between RooTracker file indexing and // oaEvent file indexing ensure("Found stored RooTracker events with different track IDs to" " primaries found in the oaEvent file", foundMisMatch); } // Check that the RooTracker events read in the correct primaries // * Event ID persistence working template<> template<> void testRooTracker::test<4> () { // Open the created RooTracker file COMET::IHandle savedFile = COMET::IRooTrackerFile::Open(SimG4::InRooTrkr, "READ", "RooTrackerTree"); // Track events int thisEntry; SimG4::EventVector::iterator strtEvt; SimG4::EventVector::iterator endEvt; // Ensure index forcing is off on the first rootracker sample thisEntry = 0; strtEvt = SimG4::Events.begin() + SimG4::StartEvents[SimG4::StartEvents.size() - 1]; endEvt = SimG4::Events.begin() + SimG4::EndEvents[SimG4::EndEvents.size() - 1]; // Loop over the events we want to check for (SimG4::EventVector::iterator e = strtEvt; e != endEvt; ++e) { // Load up the rootracker entries savedFile->GetEntry(thisEntry); TestRT::EventEntries rtParts(&(*savedFile)); ++thisEntry; // Ensure the sample persisted the event IDs ensure_equals("RooTracker event ID and track ID persistence working", (*e)->GetEventId(), savedFile->GetEvtNum()); } } // Check that the RooTracker events read in the correct primaries template<> template<> void testRooTracker::test<5> () { // Create an RTChecker instance TestRT::RTChecker rtCheck(false); // Open the created RooTracker file COMET::IHandle savedFile = COMET::IRooTrackerFile::Open(SimG4::InRooTrkr, "READ", "RooTrackerTree"); int thisEntry = 0; // Loop over the events we want to check for (SimG4::EventVector::iterator e = SimG4::Events.begin() + SimG4::StartEvents.back(); e != SimG4::Events.begin() + SimG4::EndEvents.back(); ++e) { // Load up the rootracker entries savedFile->GetEntry(thisEntry); TestRT::Error anError = rtCheck.CheckRTInput(&(*savedFile), *e); thisEntry++; // Check the return value for errors switch(anError){ case TestRT::kDiffSize : fail("There are the same number of particles in the" " rootracker file as there are that enter the" " black-hole volume"); case TestRT::kDiffData : fail("The contents of the RooTracker file are the same as the " " IG4Trajectories found in the oaEvents"); } } } };