Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:19:18

0001 #ifndef JETSCAPEMODULEMUTEX_H
0002 #define JETSCAPEMODULEMUTEX_H
0003 
0004 #include <vector>
0005 #include <memory>
0006 #include "JetScapeTask.h"
0007 
0008 using namespace std;
0009 using std::shared_ptr;
0010 
0011 namespace Jetscape {
0012 
0013 class JetScapeModuleMutex {
0014 public:
0015   virtual bool CheckMutex(vector<shared_ptr<JetScapeTask>> modules) = 0;
0016 };
0017 
0018 } // end namespace Jetscape
0019 
0020 #endif