File indexing completed on 2025-08-03 08:20:06
0001 #ifndef MARTINIMUTEX_H
0002 #define MARTINIMUTEX_H
0003
0004 #include <vector>
0005 #include <string>
0006 #include <iostream>
0007 #include <memory>
0008
0009 #include "JetScapeTask.h"
0010 #include "JetScapeModuleMutex.h"
0011
0012 using namespace Jetscape;
0013 using std::shared_ptr;
0014
0015 class MartiniMutex : public JetScapeModuleMutex {
0016 public:
0017 MartiniMutex();
0018 ~MartiniMutex();
0019 bool CheckMutex(vector<shared_ptr<JetScapeTask>> modules);
0020 };
0021
0022 #endif