EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CharmJetModule.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CharmJetModule.h
1 #ifndef CHARMJETMODULE_HH
2 #define CHARMJETMODULE_HH
3 
4 #include "Module.h"
5 
6 class CharmJetModule : public Module {
7 
8  public:
9 
10  CharmJetModule(ExRootTreeReader* data);
11 
13 
14  void initialize() override {};
15  bool execute(std::map<std::string, std::any>* DataStore) override;
16  void finalize() override {};
17 
18 };
19 
20 #endif