Class Reference for E1039 Core & Analysis Software
KJob.h
Go to the documentation of this file.
1 #ifndef _KJOB_H_
2 #define _KJOB_H_
3 #include <list>
4 #include <map>
5 #include <queue>
6 #include <new>
7 #include <TClonesArray.h>
8 #include <TStopwatch.h>
9 #include <TThread.h>
10 #include <TSemaphore.h>
11 #include <TMutex.h>
12 #include <TCondition.h>
13 #include <GlobalConsts.h>
14 class SRawEvent;
15 class SRecEvent;
16 class KScheduler;
17 
20 
21 class KJob {
22  static int verb;
23 
24 public:
25  KJob(int jobId, SRawEvent* evPtr, KScheduler* universe, bool copy);
26  KJob(bool poisoned);
27  ~KJob();
28 
29  static void Verbose(const int a) { verb = a; }
30  static int Verbose() { return verb; }
31 
32  //TODO needs a mutex // TMUTEX
33  //KJobStatus getJobStatus();
34  int jobId;
36  int nTracklets = 0;
37  bool isPoison;
38  // TODO probably dont need a jobmutex
39  TMutex* jobMutex;
40  TStopwatch* jobTimer;
42 
43  // tracklets
44  TClonesArray* tracklets;
45 
48 };
49 
50 #endif
KJobQueueStatus
Definition: KJob.h:19
@ OPEN
Definition: KJob.h:19
@ INITIALIZED
Definition: KJob.h:19
@ FULL
Definition: KJob.h:19
@ UNINITIALIZED
Definition: KJob.h:19
KJobStatus
Definition: KJob.h:18
@ COMPLETE
Definition: KJob.h:18
@ RUNNING
Definition: KJob.h:18
@ HALTED
Definition: KJob.h:18
@ STARTED
Definition: KJob.h:18
Definition: KJob.h:21
KJobStatus p_JobStatus
Definition: KJob.h:47
int jobId
Definition: KJob.h:34
TClonesArray * tracklets
Definition: KJob.h:44
KJob(int jobId, SRawEvent *evPtr, KScheduler *universe, bool copy)
Definition: KJob.cc:13
int nTracklets
Definition: KJob.h:36
bool isPoison
Definition: KJob.h:37
TStopwatch * jobTimer
Definition: KJob.h:40
static int Verbose()
Definition: KJob.h:30
SRawEvent * evData
Definition: KJob.h:41
SRecEvent * recEvData
Definition: KJob.h:46
KScheduler * universe
Definition: KJob.h:35
~KJob()
Definition: KJob.cc:63
static void Verbose(const int a)
Definition: KJob.h:29
TMutex * jobMutex
Definition: KJob.h:39