Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-06-01 07:07:12

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2023 Christopher Dilks, Connor Pecar, Matthew McEneaney
0003 
0004 #pragma once
0005 
0006 // delphes
0007 #include <classes/DelphesClasses.h>
0008 #include <external/ExRootAnalysis/ExRootTreeReader.h>
0009 
0010 //#include <fastjet/contrib/Centauro.hh>
0011 //#include <fastjet/plugins/Centauro/Centauro.hh>
0012 
0013 // epic-analysis
0014 #include "Analysis.h"
0015 
0016 
0017 class AnalysisDelphes : public Analysis
0018 {
0019   public:
0020     AnalysisDelphes(TString configFileName_="", TString outfilePrefix_="");
0021     ~AnalysisDelphes();
0022 
0023     // perform the analysis
0024     void Execute() override;
0025 
0026   private:
0027 
0028   ClassDefOverride(AnalysisDelphes,1);
0029 };