Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
fleur
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
57
Issues
57
List
Boards
Labels
Milestones
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
fleur
fleur
Commits
c3a768b5
Commit
c3a768b5
authored
Jun 29, 2016
by
Gregor Michalicek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added copyright notices to all files in the juDFT subdirectory
parent
6e0a357c
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
73 additions
and
0 deletions
+73
-0
juDFT/hdf_accessprp.F90
juDFT/hdf_accessprp.F90
+6
-0
juDFT/hdf_tools.F90
juDFT/hdf_tools.F90
+6
-0
juDFT/hdf_tools_attr.F90
juDFT/hdf_tools_attr.F90
+6
-0
juDFT/hdf_tools_exists.F90
juDFT/hdf_tools_exists.F90
+6
-0
juDFT/hdf_tools_misc.F90
juDFT/hdf_tools_misc.F90
+6
-0
juDFT/hdf_tools_rw.F90
juDFT/hdf_tools_rw.F90
+6
-0
juDFT/hdf_tools_rw_var.F90
juDFT/hdf_tools_rw_var.F90
+6
-0
juDFT/hdf_tools_stride.F90
juDFT/hdf_tools_stride.F90
+6
-0
juDFT/juDFT.F90
juDFT/juDFT.F90
+6
-0
juDFT/juDFT_env.h
juDFT/juDFT_env.h
+7
-0
juDFT/stop.F90
juDFT/stop.F90
+6
-0
juDFT/time.F90
juDFT/time.F90
+6
-0
No files found.
juDFT/hdf_accessprp.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
module
m_hdf_accessprp
USE
hdf5
#include "juDFT_env.h"
...
...
juDFT/hdf_tools.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_hdf_tools
!-----------------------------------------------
! major rewrite of hdf_tools
...
...
juDFT/hdf_tools_attr.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_hdf_tools1
!-----------------------------------------------
! major rewrite of hdf_tools!
...
...
juDFT/hdf_tools_exists.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_hdf_tools3
!-----------------------------------------------
! major rewrite of hdf_tools
...
...
juDFT/hdf_tools_misc.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_hdf_tools4
USE
hdf5
#include "juDFT_env.h"
...
...
juDFT/hdf_tools_rw.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_hdf_tools2
#include "juDFT_env.h"
!-----------------------------------------------
...
...
juDFT/hdf_tools_rw_var.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_hdf_tools6
!-----------------------------------------------
! major rewrite of hdf_tools
...
...
juDFT/hdf_tools_stride.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_hdf_tools5
!-----------------------------------------------
! major rewrite of hdf_tools
...
...
juDFT/juDFT.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_juDFT
USE
m_juDFT_stop
USE
m_juDFT_time
...
...
juDFT/juDFT_env.h
View file @
c3a768b5
/*--------------------------------------------------------------------------------
* Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
* This file is part of FLEUR and available as free software under the conditions
* of the MIT license as expressed in the LICENSE file in more detail.
*--------------------------------------------------------------------------------
*/
!
The
default
is
to
call
timestart
only
if
requested
#define CPP_juDFT_timestart(name) call timestart(name,__FILE__,__LINE__)
#define CPP_juDFT_timestart_info(name)
...
...
juDFT/stop.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_juDFT_stop
!-----------------------------------------------
! module to terminate Calculation, should be used instead
...
...
juDFT/time.F90
View file @
c3a768b5
!--------------------------------------------------------------------------------
! Copyright (c) 2016 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_juDFT_time
!*****************************************************************
! DESC:Timer module for measuring the execution times of different
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment