FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Ydriver/src/interface/C_driver_transfer.F at master · yambo-code/Ydriver · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
yambo-code
/
Ydriver
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Ydriver
/
src
/
interface
/
C_driver_transfer.F
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (30 loc) · 832 Bytes
Breadcrumbs
Ydriver
/
src
/
interface
/
C_driver_transfer.F
Copy path
File metadata and controls
30 lines (30 loc) · 832 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
!
! License
-
Identifier: GPL
!
! Copyright (C)
2020
The Yambo Team
!
! Authors (see AUTHORS file for details): AM
!
subroutine
C_driver_transfer
()
!
#
if
!defined _example_driver
use C_driver, ONLY:code_version,code_revision,code_hash,&
& code_libraries,get_version,get_libraries,get_running_tool,&
& get_running_project,code_bin,code_tool,code_project
!
implicit none
!
code_tool
=
"
"
call
get_running_tool(code_tool)
code_project
=
"
"
call
get_running_project(code_project)
code_bin
=
trim
(code_tool)
if
(
len_trim
(code_project)>
0
) code_bin
=
trim
(code_tool)
//
"
_
"
//
trim
(code_project)
code_libraries
=
"
"
call
get_libraries(code_libraries)
code_hash
=
"
"
call
get_version(code_version(
1
),code_version(
2
),code_version(
3
),code_revision,code_hash)
!
#
endif
!
end
subroutine
Back
|
FazBrowse Home
|
New Git URL