-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRLAfuncs.h
42 lines (35 loc) · 1.44 KB
/
RLAfuncs.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
35
36
37
38
39
40
41
42
// @(#)RLAfuncs:$Id$
// Authors: KD Jan-26-2015
/*************************************************************************
* Copyright (C) None. *
* All rights reserved. *
**************************************************************************/
#ifndef __RLAfuncs_H__
#define __RLAfuncs_H__
//////////////////////////////////////////////////////////////////////////
// //
// RLAfuncs //
// //
// Single functions R, L, A -> all as a function of t //
// RLA analytical convolution //
// //
//////////////////////////////////////////////////////////////////////////
/*
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
#ifndef ROOT_TMathBase
#include "TMathBase.h"
#endif
#include "TError.h"
#include <algorithm>
#include <limits>
#include <cmath>
*/
namespace RLAfuncs {
double Rfunc(double *t, double *par);
double Lfunc(double *t, double *par);
double Afunc(double *t, double *par);
double RLAconv(double tt=0, double t_R=1, double sigmaL=1, double t_r=1, double t_f=1);//double *t, double *par)//double *t, double *par);
}
#endif