////////////////////////////////////////////////////////// // This class has been automatically generated on // Wed Feb 5 10:28:11 2025 by ROOT version 6.32.02 // from TTree Event/Info per event per hit // found on file: GeV2_NEG_PION.root ////////////////////////////////////////////////////////// #ifndef GeV2_NEG_PION_h #define GeV2_NEG_PION_h #include #include #include // Header file for the classes stored in the TTree if any. #include "vector" #include "vector" class GeV2_NEG_PION { public : TTree *fChain; //!pointer to the analyzed TTree or TChain Int_t fCurrent; //!current Tree number in a TChain // Fixed size dimensions of array or collections stored in the TTree if any. // Declaration of leaf types Int_t EventID; Int_t NTOT; vector *Egap; vector *Gap_ParticleID; vector *Gap_X; vector *Gap_Y; vector *Gap_Z; vector *Gap_Layer; vector *Gap_Row; vector *Gap_Column; vector *Gap_Glob_time; Double_t FirstHadInteractionPosition; Double_t Eleak; vector *Eabs; vector *TrackID; vector *Abso_Layer; // List of branches TBranch *b_EventID; //! TBranch *b_NTOT; //! TBranch *b_Egap; //! TBranch *b_Gap_ParticleID; //! TBranch *b_Gap_X; //! TBranch *b_Gap_Y; //! TBranch *b_Gap_Z; //! TBranch *b_Gap_Layer; //! TBranch *b_Gap_Row; //! TBranch *b_Gap_Column; //! TBranch *b_Gap_Glob_time; //! TBranch *b_FirstHadInteractionPosition; //! TBranch *b_Eleak; //! TBranch *b_Eabs; //! TBranch *b_TrackID; //! TBranch *b_Abso_Layer; //! GeV2_NEG_PION(TTree *tree=0); virtual ~GeV2_NEG_PION(); virtual Int_t Cut(Long64_t entry); virtual Int_t GetEntry(Long64_t entry); virtual Long64_t LoadTree(Long64_t entry); virtual void Init(TTree *tree); virtual void Loop(); virtual bool Notify(); virtual void Show(Long64_t entry = -1); }; #endif #ifdef GeV2_NEG_PION_cxx GeV2_NEG_PION::GeV2_NEG_PION(TTree *tree) : fChain(0) { // if parameter tree is not specified (or zero), connect the file // used to generate this class and read the Tree. if (tree == 0) { TFile *f = (TFile*)gROOT->GetListOfFiles()->FindObject("GeV2_NEG_PION.root"); if (!f || !f->IsOpen()) { f = new TFile("GeV2_NEG_PION.root"); } f->GetObject("Event",tree); } Init(tree); } GeV2_NEG_PION::~GeV2_NEG_PION() { if (!fChain) return; delete fChain->GetCurrentFile(); } Int_t GeV2_NEG_PION::GetEntry(Long64_t entry) { // Read contents of entry. if (!fChain) return 0; return fChain->GetEntry(entry); } Long64_t GeV2_NEG_PION::LoadTree(Long64_t entry) { // Set the environment to read one entry if (!fChain) return -5; Long64_t centry = fChain->LoadTree(entry); if (centry < 0) return centry; if (fChain->GetTreeNumber() != fCurrent) { fCurrent = fChain->GetTreeNumber(); Notify(); } return centry; } void GeV2_NEG_PION::Init(TTree *tree) { // The Init() function is called when the selector needs to initialize // a new tree or chain. Typically here the branch addresses and branch // pointers of the tree will be set. // It is normally not necessary to make changes to the generated // code, but the routine can be extended by the user if needed. // Init() will be called many times when running on PROOF // (once per file to be processed). // Set object pointer Egap = 0; Gap_ParticleID = 0; Gap_X = 0; Gap_Y = 0; Gap_Z = 0; Gap_Layer = 0; Gap_Row = 0; Gap_Column = 0; Gap_Glob_time = 0; Eabs = 0; TrackID = 0; Abso_Layer = 0; // Set branch addresses and branch pointers if (!tree) return; fChain = tree; fCurrent = -1; fChain->SetMakeClass(1); fChain->SetBranchAddress("EventID", &EventID, &b_EventID); fChain->SetBranchAddress("NTOT", &NTOT, &b_NTOT); fChain->SetBranchAddress("Egap", &Egap, &b_Egap); fChain->SetBranchAddress("Gap_ParticleID", &Gap_ParticleID, &b_Gap_ParticleID); fChain->SetBranchAddress("Gap_X", &Gap_X, &b_Gap_X); fChain->SetBranchAddress("Gap_Y", &Gap_Y, &b_Gap_Y); fChain->SetBranchAddress("Gap_Z", &Gap_Z, &b_Gap_Z); fChain->SetBranchAddress("Gap_Layer", &Gap_Layer, &b_Gap_Layer); fChain->SetBranchAddress("Gap_Row", &Gap_Row, &b_Gap_Row); fChain->SetBranchAddress("Gap_Column", &Gap_Column, &b_Gap_Column); fChain->SetBranchAddress("Gap_Glob_time", &Gap_Glob_time, &b_Gap_Glob_time); fChain->SetBranchAddress("FirstHadInteractionPosition", &FirstHadInteractionPosition, &b_FirstHadInteractionPosition); fChain->SetBranchAddress("Eleak", &Eleak, &b_Eleak); fChain->SetBranchAddress("Eabs", &Eabs, &b_Eabs); fChain->SetBranchAddress("TrackID", &TrackID, &b_TrackID); fChain->SetBranchAddress("Abso_Layer", &Abso_Layer, &b_Abso_Layer); Notify(); } bool GeV2_NEG_PION::Notify() { // The Notify() function is called when a new file is opened. This // can be either for a new TTree in a TChain or when when a new TTree // is started when using PROOF. It is normally not necessary to make changes // to the generated code, but the routine can be extended by the // user if needed. The return value is currently not used. return true; } void GeV2_NEG_PION::Show(Long64_t entry) { // Print contents of entry. // If entry is not specified, print current entry if (!fChain) return; fChain->Show(entry); } Int_t GeV2_NEG_PION::Cut(Long64_t entry) { // This function may be called from Loop. // returns 1 if entry is accepted. // returns -1 otherwise. return 1; } #endif // #ifdef GeV2_NEG_PION_cxx