-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding offsetpolyState.F: accidentally omitted from repo. Adding lice…
…nse.py for stanford_license variable.
- Loading branch information
Eric Gurrola
committed
Jan 17, 2019
1 parent
e5d6ebf
commit 4095681
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
components/stdproc/stdproc/offsetpoly/src/offsetpolyState.F
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
! | ||
! Author: Piyush Agram | ||
! Copyright 2013, by the California Institute of Technology. ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged. | ||
! Any commercial use must be negotiated with the Office of Technology Transfer at the California Institute of Technology. | ||
! | ||
! This software may be subject to U.S. export control laws. By accepting this software, the user agrees to comply with all applicable U.S. | ||
! export laws and regulations. User has the responsibility to obtain export licenses, or other export authority as may be required before | ||
! exporting such information to foreign countries or providing access to foreign persons. | ||
! | ||
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
|
||
module offsetpolyState | ||
integer i_ma !c Number of fit Coefficients | ||
integer numOffsets !c Number of offsets | ||
|
||
!c Location across array 1 | ||
double precision, allocatable, dimension(:) :: r_ranposV | ||
|
||
!c Location across offset array 1 | ||
double precision, allocatable, dimension(:) :: r_offV | ||
|
||
!c Location down array 1 | ||
double precision, allocatable, dimension(:) :: r_azposV | ||
|
||
!c SNR array 1 | ||
double precision, allocatable, dimension(:) :: r_sigV | ||
|
||
!Polynomial arrays | ||
double precision, allocatable, dimension(:) :: r_polyV | ||
end module offsetpolyState |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
stanford_license = None |