Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /jana2/src/examples/misc/DstExample/DstExampleFactory.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 
0002 // Copyright 2020, Jefferson Science Associates, LLC.
0003 // Subject to the terms in the LICENSE file found in the top-level directory.
0004 
0005 #ifndef _DstExampleFactory_h_
0006 #define _DstExampleFactory_h_
0007 
0008 #include <JANA/JFactoryT.h>
0009 
0010 #include "DataObjects.h"
0011 
0012 class DstExampleFactory : public JFactoryT<MyRenderableJObject> {
0013 
0014 public:
0015     DstExampleFactory() {
0016         SetTag("from_factory");
0017     };
0018 
0019     void Init() override;
0020     void ChangeRun(const std::shared_ptr<const JEvent> &event) override;
0021     void Process(const std::shared_ptr<const JEvent> &event) override;
0022 
0023 };
0024 
0025 #endif // _DstExampleFactory_h_