GENIEGenerator
Loading...
Searching...
No Matches
Range1.cxx
Go to the documentation of this file.
1//____________________________________________________________________________
2/*
3 Copyright (c) 2003-2025, The GENIE Collaboration
4 For the full text of the license visit http://copyright.genie-mc.org
5
6 Costas Andreopoulos <c.andreopoulos \at cern.ch>
7 University of Liverpool
8*/
9//____________________________________________________________________________
10
12
13using namespace genie;
14
15//____________________________________________________________________________
17min(0.),
18max(0.)
19{
20
21}
22//____________________________________________________________________________
23Range1F_t::Range1F_t(float _min, float _max) :
24min(_min),
25max(_max)
26{
27
28}
29//____________________________________________________________________________
31min(r.min),
32max(r.max)
33{
34
35}
36//____________________________________________________________________________
38{
39
40}
41//____________________________________________________________________________
43{
44 min = r.min;
45 max = r.max;
46}
47//____________________________________________________________________________
49min(0.),
50max(0.)
51{
52
53}
54//____________________________________________________________________________
55Range1D_t::Range1D_t(double _min, double _max) :
56min(_min),
57max(_max)
58{
59
60}
61//____________________________________________________________________________
63min(r.min),
64max(r.max)
65{
66
67}
68//____________________________________________________________________________
70{
71
72}
73//____________________________________________________________________________
75{
76 min = r.min;
77 max = r.max;
78}
79//____________________________________________________________________________
81min(0),
82max(0)
83{
84
85}
86//____________________________________________________________________________
87Range1I_t::Range1I_t(int _min, int _max) :
88min(_min),
89max(_max)
90{
91
92}
93//____________________________________________________________________________
95min(r.min),
96max(r.max)
97{
98
99}
100//____________________________________________________________________________
102{
103
104}
105//____________________________________________________________________________
107{
108 min = r.min;
109 max = r.max;
110}
111//____________________________________________________________________________
void Copy(const Range1D_t &r)
Definition Range1.cxx:74
void Copy(const Range1F_t &r)
Definition Range1.cxx:42
void Copy(const Range1I_t &r)
Definition Range1.cxx:106
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25