EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MuonPIDModule.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MuonPIDModule.h
1 #ifndef MUONPIDMODULE_HH
2 #define MUONPIDMODULE_HH
3 
4 #include "Module.h"
5 #include "classes/DelphesClasses.h"
6 
7 
8 class MuonPIDModule : public Module {
9 
10  public:
11 
12  MuonPIDModule(ExRootTreeReader* data);
13 
15 
16  void initialize() override {};
17  bool execute(std::map<std::string, std::any>* DataStore) override;
18  void finalize() override {};
19 
20  private:
21 
22  bool MuonPID(Track* track, float muIDprob = 0.95, float separation = 2.0);
23 };
24 
25 #endif