Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LBTMutex.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file LBTMutex.h
1 #ifndef LBTMUTEX_H
2 #define LBTMUTEX_H
3 
4 #include <vector>
5 #include <string>
6 #include <iostream>
7 #include <memory>
8 
9 #include "JetScapeTask.h"
10 #include "JetScapeModuleMutex.h"
11 
12 using namespace Jetscape;
13 using std::shared_ptr;
14 
15 class LBTMutex : public JetScapeModuleMutex {
16 public:
17  LBTMutex();
18  ~LBTMutex();
19  bool CheckMutex(vector<shared_ptr<JetScapeTask>> modules);
20 };
21 
22 #endif