#include <algorithm>#include <map>#include <pthread.h>#include "PhysicsNtuple/AlgSnarl.h"#include "PhysicsNtuple/Mutex.h"Go to the source code of this file.
Namespaces | |
| namespace | Anp |
Classes | |
| class | Anp::AlgThread |
| struct | Anp::PrevDataKey |
Functions | |
| void * | run_alg_thread (void *data_) |
|
|
Definition at line 13 of file AlgThread.cxx. 00014 {
00015 if(!data_)
00016 {
00017 cerr << "Anp::run_alg_thread - null data pointer" << endl;
00018 return 0;
00019 }
00020
00021 AlgThread *data = static_cast<AlgThread *> (data_);
00022
00023 data -> Run();
00024
00025 return data;
00026 }
|
1.3.9.1