-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserApplications.h
34 lines (21 loc) · 1016 Bytes
/
UserApplications.h
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
/** author : Mircho Rodozov, [email protected]
* created on : 06.08.13
*/
#ifndef USER_APPLICATIONS_H
#define USER_APPLICATIONS_H
#include <iomanip>
#include "interface/RPCChambersCluster.h"
#include "interface/RPCRawConverter.h"
#include "interface/RPCConfigObject.h"
void currentTests(int _argc,char * arguments[]);// substitution of the main function. use this for tests
void testDBconnection(int _argc,char * arguments[]); // make the test for the db connection
void clusterObjectTester (int _argc,char * _argv[]);
void firstCompleteTestApplication(int _argc,char * _argv[]);
void timeEvolutionStudy(int _argc,char * _argv[]);
void localEfficiencyStudy(int _argc,char * _argv[]);
void converterTests(int _argc,char * _argv[]);
void configObjectsTest(int _argc,char * _argv[]);
void getGlobalPlotsForRunStack(int _argc,char * _argv[]); // mostly for CERN files
void getDistributionOfEventsByClustersInRefChambers(int _argc,char * _argv[]);
void fitSigmoidHistogram(); // fit existing sigmoid
#endif