V3FIT
Main Page
Related Pages
Modules
Modules List
Module Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions/Subroutines
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
y
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Data Types List
Data Types List
Data Types
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
~
Functions/Subroutines
a
b
c
d
e
f
g
i
l
m
n
p
r
s
t
u
v
x
y
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Files
File List
File Members
All
b
c
g
i
l
m
n
p
t
v
w
Functions/Subroutines
b
c
g
i
m
p
t
v
w
Variables
Enumerations
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Macros
Pages
LIBSTELL
Sources
Pspline
ibc_ck.f
1
subroutine
ibc_ck(ibc,slbl,xlbl,imin,imax,ier)
2
c
3
c check that spline routine ibc flag is in range
4
c
5
integer
ibc
! input -- flag value
6
character*(*)
slbl
! input -- subroutine name
7
character*(*)
xlbl
! input -- axis label
8
c
9
integer
imin
! input -- min allowed value
10
integer
imax
! input -- max allowed value
11
c
12
integer
ier
! output -- set =1 if error detected
13
c
14
c----------------------
15
c
16
if
((ibc.lt.imin).or.(ibc.gt.imax))
then
17
ier=1
18
write
(6,1001) slbl,xlbl,ibc,imin,imax
19
1001
format
(
' ?'
,a,
' -- ibc'
,a,
' = '
,i9,
' out of range '
,
20
> i2,
' to '
,i2)
21
endif
22
c
23
return
24
end
Generated on Thu Mar 5 2020 15:49:24 for V3FIT by
1.8.17