-
Notifications
You must be signed in to change notification settings - Fork 2
/
Qfuncs.h
41 lines (34 loc) · 1.33 KB
/
Qfuncs.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
// @(#)Qfuncs:$Id$
// Authors: KD Jan-26-2015
/*************************************************************************
* Copyright (C) None. *
* All rights reserved. *
**************************************************************************/
#ifndef __Qfuncs_H__
#define __Qfuncs_H__
//////////////////////////////////////////////////////////////////////////
// //
// Qfuncs //
// //
// Single functions for charge dispersion as a function of time //
// basically integrated geometries as they "see" induced signals //
// //
//////////////////////////////////////////////////////////////////////////
/*
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
#ifndef ROOT_TMathBase
#include "TMathBase.h"
#endif
#include "TError.h"
#include <algorithm>
#include <limits>
#include <cmath>
*/
namespace Qfuncs {
double PadRect(double tt=0, double xl=1, double xh=1, double yl=1, double yh=1, double w = 1);
double TestBox(double tt=0);
double TestTri(double tt=0);
}
#endif