#include #include "ICheckOutput.hxx" #include "IG4PrimaryVertex.hxx" #include "IG4PrimaryParticle.hxx" #include "tutTestRT.hxx" COMET::ICheckOutput::~ICheckOutput(){}; bool COMET::ICheckOutput::ProcessEvent(ICOMETEvent& event, IRooTrackerFile* inputRT){ // Get the RooTracker primaries TestRT::RTChecker rtCheck(fForceIndex); TestRT::Error anError = rtCheck.CheckRTOutput(inputRT, &event); // Return true if no error was found return (anError == TestRT::kNone || anError == TestRT::kIsSubset); }