Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:38

0001 // Copyright 2020, Jefferson Science Associates, LLC.
0002 // Subject to the terms in the LICENSE file found in the top-level directory.
0003 
0004 #ifndef _JTestRootProcessor_h_
0005 #define _JTestRootProcessor_h_
0006 
0007 #include <JANA/JEventProcessor.h>
0008 
0009 class JTestRootProcessor : public JEventProcessor {
0010 
0011     // Shared state (e.g. histograms, TTrees, TFiles) live
0012     
0013 public:
0014 
0015     JTestRootProcessor();
0016     virtual ~JTestRootProcessor() = default;
0017 
0018     void Process(const JEvent&) override;
0019 };
0020 
0021 
0022 #endif // _JTestRootProcessor_h_
0023