File indexing completed on 2025-01-18 10:17:19
0001
0002
0003
0004
0005 #ifndef _JFactoryGenerator_streamDet_h_
0006 #define _JFactoryGenerator_streamDet_h_
0007
0008 #include <JANA/JFactoryGenerator.h>
0009 #include <JANA/JFactoryT.h>
0010
0011 #include "ADCSample.h"
0012
0013 class JFactoryGenerator_streamDet: public JFactoryGenerator{
0014
0015 public:
0016
0017 void GenerateFactories(JFactorySet *factory_set){
0018
0019 factory_set->Add(new JFactoryT<ADCSample>());
0020
0021 }
0022
0023 };
0024
0025 #endif