File: TRAN_Credit.c

package info (click to toggle)
openmx 3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 134,876 kB
  • sloc: ansic: 152,771; python: 876; makefile: 576; xml: 63; perl: 18; sh: 4
file content (40 lines) | stat: -rw-r--r-- 1,042 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
/**********************************************************************
  TRAN_Credit.c:

  TRAN_Credit.c is a subroutine to show a credit.

  Log of TRAN_Credit.c:

     24/July/2008  Released by H.Kino and T.Ozaki

***********************************************************************/

#include <stdio.h>
#include <string.h>

#ifdef nompi
#include "mimic_mpi.h"
#else
#include <mpi.h>
#endif

#include "tran_prototypes.h"

void TRAN_Credit(MPI_Comm comm1)
{

  int myid;

  MPI_Comm_rank(comm1,&myid);

  if (myid==Host_ID) {
    printf("\n***********************************************************\n"); 
    printf("***********************************************************\n"); 
    printf(" Welcome to the NEGF extension\n");
    printf(" The prototype fortran code: by Hisashi Kondo.\n");
    printf(" The current version: by Hiori Kino and Taisuke Ozaki.\n");
    printf("***********************************************************\n"); 
    printf("***********************************************************\n\n\n\n"); 
  }

}