File: TRAN_Credit.c

package info (click to toggle)
openmx 3.2.4.dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 62,572 kB
  • ctags: 2,684
  • sloc: ansic: 130,666; python: 876; makefile: 560; xml: 63; perl: 18; sh: 4
file content (34 lines) | stat: -rw-r--r-- 1,008 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
#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 NEGF extension\n");
      printf(" The original fortran code was written by Hisashi Kondo\n");
      printf(" as the Frontier Simulation Software for Industrial Science\n");
      printf(" project, and the C code was written by Hiori Kino as an\n");
      printf(" extension of OpenMX, based on the original fortran code,\n");
      printf(" and a further modification was made by Taisuke Ozaki.\n");
      printf("***********************************************************\n"); 
      printf("***********************************************************\n\n\n\n"); 
   }


}