Jpp 19.3.0-rc.2
the software that should make you happy
Loading...
Searching...
No Matches
JCoverage.hh
Go to the documentation of this file.
1#ifndef __JDYNAMICS__JCOVERAGE__
2#define __JDYNAMICS__JCOVERAGE__
3
4/**
5 * \file
6 *
7 * Coverage of dynamical detector calibration.
8 * \author mdejong
9 */
10
11namespace JDYNAMICS {}
12namespace JPP { using namespace JDYNAMICS; }
13
14namespace JDYNAMICS {
15
16 /**
17 * Data structure for coverage of detector by dynamical calibrations.
18 */
20 /**
21 * Default constructor.
22 */
24 orientation(0.0),
25 position (0.0)
26 {}
27
28
29 /**
30 * Constructor.
31 *
32 * \param orientation orientation
33 * \param position position
34 */
36 const double position) :
39 {}
40
41 double orientation; //!< coverage of detector by available orientation calibration [0,1]
42 double position; //!< coverage of detector by available position calibration [0,1]
43 };
44}
45
46#endif
Main namespace for dynamic position and orientation calibration.
Definition JCoverage.hh:11
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Data structure for coverage of detector by dynamical calibrations.
Definition JCoverage.hh:19
double position
coverage of detector by available position calibration [0,1]
Definition JCoverage.hh:42
double orientation
coverage of detector by available orientation calibration [0,1]
Definition JCoverage.hh:41
coverage_type(const double orientation, const double position)
Constructor.
Definition JCoverage.hh:35
coverage_type()
Default constructor.
Definition JCoverage.hh:23