-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSkep.h
More file actions
36 lines (29 loc) · 666 Bytes
/
Skep.h
File metadata and controls
36 lines (29 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// Skep.h
//
//
// Created by Benedikt Hegner on 4/14/12.
// Copyright (c) 2012 CERN. All rights reserved.
//
#ifndef _Skep_h
#define _Skep_h
// include fwk
#include "AlgoPool.h"
#include "EventLoopManager.h"
#include "Scheduler.h"
#include "Whiteboard.h"
class Skep {
public:
Skep(unsigned int events, unsigned int n_parallel_, unsigned int n_wb_slots);
virtual ~Skep();
private:
const unsigned int events_;
const unsigned int n_parallel_;
const unsigned int n_wb_slots_;
EventLoopManager event_loop_;
Scheduler scheduler_;
Whiteboard wb_;
std::vector<AlgoBase*> algos_;
AlgoPool algo_pool_;
};
#endif