Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-27 07:03:09

0001 // Copyright 2022, David Lawrence
0002 // Subject to the terms in the LICENSE file found in the top-level directory.
0003 //
0004 //
0005 
0006 #include <JANA/JApplication.h>
0007 
0008 #include "TrackingTest_processor.h"
0009 //#include "JFactory_EcalBarrelRawCalorimeterHit.h.bck"
0010 //#include "JFactory_RawCalorimeterHit_EcalBarrelRawCalorimeterHits.h.bck"
0011 
0012 extern "C" {
0013     void InitPlugin(JApplication *app) {
0014         InitJANAPlugin(app);
0015         app->Add(new TrackingTest_processor(app));
0016         //app->Add(new JFactoryGeneratorT<JFactory_EcalBarrelRawCalorimeterHit>());
0017         //app->Add(new JFactoryGeneratorT<JFactory_RawCalorimeterHit_EcalBarrelRawCalorimeterHits>());
0018     }
0019 }