Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /EICrecon/src/utilities/janatop/janatop.cc was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // Copyright 2022, Dmitry Romanov
0002 // Subject to the terms in the LICENSE file found in the top-level directory.
0003 //
0004 //
0005 
0006 #include <JANA/JApplicationFwd.h>
0007 #include <JANA/Services/JParameterManager.h>
0008 #include <string>
0009 
0010 #include "JEventProcessorJANATOP.h"
0011 
0012 extern "C" {
0013 void InitPlugin(JApplication* app) {
0014   InitJANAPlugin(app);
0015   app->Add(new JEventProcessorJANATOP());
0016   app->GetJParameterManager()->SetParameter("RECORD_CALL_STACK", true);
0017 }
0018 }