-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbanner.cpp
95 lines (78 loc) · 5.1 KB
/
banner.cpp
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
$Id: banner.cpp,v 1.19 2020/05/01 20:03:04 mp Exp $
AutoGrid
Copyright (C) 2009 The Scripps Research Institute. All rights reserved.
AutoGrid is a Trade Mark of The Scripps Research Institute.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdio.h>
#include "autogrid.h"
void banner( char * version_num, FILE *logFile)
{
/*----------------------------------------------------------------------------*/
/* Output banner... */
/*----------------------------------------------------------------------------*/
(void) fprintf(logFile,"\n _______________________________________________________\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile,"__________//____________________________/////_________________/________\n");
(void) fprintf(logFile,"_________/__/____________/_____________/______________/_______/________\n");
(void) fprintf(logFile,"________/____/___________/_____________/______________________/________\n");
(void) fprintf(logFile,"________/____/__/_____/_/////___/////__/__////_/_///__/__////_/________\n");
(void) fprintf(logFile,"_______/______/_/_____/__/_____/_____/_/_____/_//___/_/_/____//________\n");
(void) fprintf(logFile,"_______////////_/_____/__/_____/_____/_/_____/_/______/_/_____/________\n");
(void) fprintf(logFile,"_______/______/_/____//__/___/_/_____/_/_____/_/______/_/____//________\n");
(void) fprintf(logFile,"_______/______/__////_/___///___/////___/////__/______/__////_/________\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile," _______________________________________________________\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile," ______\n");
(void) fprintf(logFile," / \\\n");
(void) fprintf(logFile," / \\\n");
(void) fprintf(logFile," / \\\n");
(void) fprintf(logFile," \\ /\\ /\n");
(void) fprintf(logFile," \\ / \\ /\n");
(void) fprintf(logFile," \\/ /\\ \\/\n");
(void) fprintf(logFile," / \\\n");
(void) fprintf(logFile," /____\\\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile," ______________________________________ \n");
(void) fprintf(logFile," | |\n");
(void) fprintf(logFile," | AutoGrid %-8s |\n", version_num );
(void) fprintf(logFile," | |\n");
(void) fprintf(logFile," | Garrett M. Morris, TSRI |\n");
(void) fprintf(logFile," | Ruth Huey, TSRI |\n");
(void) fprintf(logFile," | David S. Goodsell, TSRI |\n");
(void) fprintf(logFile," | Arthur J. Olson, TSRI |\n");
/* (void) fprintf(logFile," | (MODIFIED VERSION DUAL HB) |\n"); */
(void) fprintf(logFile," | |\n");
(void) fprintf(logFile," | (C) 1989-2020, TSRI |\n");
(void) fprintf(logFile," | The Scripps Research Institute |\n");
(void) fprintf(logFile," |______________________________________|\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile," ______________________________________ \n");
(void) fprintf(logFile," | |\n");
(void) fprintf(logFile," | Calculation of van der Waals, H-Bond,|\n");
(void) fprintf(logFile," | Electrostatic Potential Energy, & |\n");
(void) fprintf(logFile," | Desolvation Free Energy Grid Maps |\n");
(void) fprintf(logFile," | for AutoDock |\n");
(void) fprintf(logFile," | For help, email %-19s |\n", PACKAGE_BUGREPORT);
(void) fprintf(logFile," |______________________________________|\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile,"\n");
(void) fprintf(logFile,"\n");
}
/*----------------------------------------------------------------------------*/
/* EOF. */
/*----------------------------------------------------------------------------*/