/////////////////////////////////////////////////////////////////////////////////////// // Functions demonstrating the use of the TrackNav, TrackCursor and TrackNode classes // All require a ROOT file generated with tracking information ON. // // see https://github.com/snoplus/rat/blob/master/example/macros/tracking/tracking.mac // http://snopl.us/docs/rat/user_manual/html/node214.html // // Particle tracks are divided into a series of backward looking 'Nodes' containing // the step information. The TrackCursor class controls the navigation through these // nodes and between tracks. // // Secondary particles appear new 'child' tracks at the node that created them. // // Primary particles are the children of an inital track with a single node // representing the event // // J dunger - 2016-03-14 Hide TrackTest example from CINT // J dunger - 2014-10-14 TrackTest_Energy namespace fix // J dunger - 2014-08-20 : New file /////////////////////////////////////////////////////////////////////////////////////// #ifndef __CINT__ #include #include #include #include #include #include #endif #include //A function to plot the momentum of the primary particles TH1D* PrimaryMomentum(const std::string& filename){ TH1D* hist = new TH1D("PrimaryMomentum","",10,0,5); // If this is being done on data that does not require remote database connection // eg.: a simple simulation with default run number (0) // We can disable the remote connections: // // NOTE: Don't do this if you are using real data!!! RAT::DB::Get()->SetAirplaneModeStatus(true); RAT::DU::DSReader reader(filename); //Event Loop for(size_t iEv =0; iEvFill(node->GetMomentum().Mag()); } } return hist; } //A function to plot the final displacement of the 1st Primary Particle TH1D* Primary1Displacement(const std::string& filename){ TH1D* hist = new TH1D("Primary1Displacement","",10,0,100); // If this is being done on data that does not require remote database connection // eg.: a simple simulation with default run number (0) // We can disable the remote connections: // // NOTE: Don't do this if you are using real data!!! RAT::DB::Get()->SetAirplaneModeStatus(true); RAT::DU::DSReader reader(filename); //Event Loop for(size_t iEv =0; iEvGetPosition(); node = cursor.TrackEnd(); TVector3 fin_pos = node->GetPosition(); double disp = (fin_pos - init_pos).Mag(); hist->Fill(disp); } } return hist; } // A function to cout the name of all processes that create secondary particles void FindSecondaries(const std::string& filename){ RAT::DU::DSReader reader(filename); for(size_t iEv =0; iEvGetProcess() << std::endl; cursor.GoNext(); } cursor.GoTrackStart(); cursor.GoParent(); } //Primary Particle Tracks } //event return; } /* In the following example CINT fails to recognise the inheritance of TrackTestEnergy and tries to call the pure virtual method TrackTest::operator()(TrackNode *n). Works if compiled with gcc or root ACLiC. */ #ifndef __CINT__ // A class and function to plot the inital radial position of all electrons with inital energy >1MeV namespace RAT{ class TrackTest_Energy : public TrackTest { double fEnergy; public: TrackTest_Energy(const double& Energy) : fEnergy(Energy) {} virtual bool operator() (TrackNode *n) {return n->GetKineticEnergy() > fEnergy;} }; } TH1D* PlotInitalPosECut(const std::string& filename){ TH1D* hist = new TH1D("PrimaryMomentum","",10,0,5); RAT::DU::DSReader reader(filename); RAT::TrackTest *t = new RAT::TrackTest_Energy(1); //Event Loop for(size_t iEv =0; iEvFill(n->GetPosition().Mag()); n = cursor.FindNextTrack(t); } } return hist; } #endif