Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:17:19

0001 
0002 // Copyright 2023, Jefferson Science Associates, LLC.
0003 // Subject to the terms in the LICENSE file found in the top-level directory.
0004 
0005 
0006 #ifndef JANA2_EXAMPLECLUSTERFACTORY_H
0007 #define JANA2_EXAMPLECLUSTERFACTORY_H
0008 
0009 #include <JANA/Podio/JFactoryPodioT.h>
0010 #include "PodioDatamodel/ExampleCluster.h"
0011 
0012 class ExampleClusterFactory : public JFactoryPodioT<ExampleCluster> {
0013 public:
0014     ExampleClusterFactory();
0015     void Process(const std::shared_ptr<const JEvent> &event) override;
0016 };
0017 
0018 
0019 #endif //JANA2_EXAMPLECLUSTERFACTORY_H