1c
2      subroutine util_nwchem_paper()
3c
4      implicit none
5      integer maxno_authors
6      parameter(maxno_authors=114)
7      character*64 name_author(maxno_authors)
8      data name_author/
9     +     'E. Aprà', 'E. J. Bylaska', 'W. A. de Jong', 'N. Govind',
10     +     'K. Kowalski', 'T. P. Straatsma', 'M. Valiev',
11     +     'H. J. J. van Dam', 'Y. Alexeev', 'J. Anchell',
12     +     'V. Anisimov', 'F. W. Aquino', 'R. Atta-Fynn',
13     +     'J. Autschbach', 'N. P. Bauman', 'J. C. Becca',
14     +     'D. E. Bernholdt', 'K. Bhaskaran-Nair', 'S. Bogatko',
15     +     'P. Borowski', 'J. Boschen', 'J. Brabec', 'A. Bruner',
16     +     'E. Cauët', 'Y. Chen', 'G. N. Chuev', 'C. J. Cramer',
17     +     'J. Daily', 'M. J. O. Deegan', 'T. H. Dunning Jr.',
18     +     'M. Dupuis', 'K. G. Dyall', 'G. I. Fann', 'S. A. Fischer',
19     +     'A. Fonari', 'H. Früchtl', 'L. Gagliardi', 'J. Garza',
20     +     'N. Gawande', 'S. Ghosh', 'K. Glaesemann', 'A. W. Götz',
21     +     'J. Hammond', 'V. Helms', 'E. D. Hermes', 'K. Hirao',
22     +     'S. Hirata', 'M. Jacquelin', 'L. Jensen', 'B. G. Johnson',
23     +     'H. Jónsson', 'R. A. Kendall', 'M. Klemm', 'R. Kobayashi',
24     +     'V. Konkov', 'S. Krishnamoorthy', 'M. Krishnan', 'Z. Lin',
25     +     'R. D. Lins', 'R. J. Littlefield', 'A. J. Logsdail',
26     +     'K. Lopata', 'W. Ma', 'A. V. Marenich',
27     +     'J. Martin del Campo', 'D. Mejia-Rodriguez', 'J. E. Moore',
28     +     'J. M. Mullin', 'T. Nakajima', 'D. R. Nascimento',
29     +     'J. A. Nichols', 'P. J. Nichols', 'J. Nieplocha',
30     +     'A. Otero-de-la-Roza', 'B. Palmer', 'A. Panyala',
31     +     'T. Pirojsirikul', 'B. Peng', 'R. Peverati', 'J. Pittner',
32     +     'L. Pollack', 'R. M. Richard', 'P. Sadayappan',
33     +     'G. C. Schatz', 'W. A. Shelton', 'D. W. Silverstein',
34     +     'D. M. A. Smith', 'T. A. Soares', 'D. Song', 'M. Swart',
35     +     'H. L. Taylor', 'G. S. Thomas', 'V. Tipparaju',
36     +     'D. G. Truhlar', 'K. Tsemekhman', 'T. Van Voorhis',
37     +     'Á. Vázquez-Mayagoitia', 'P. Verma', 'O. Villa',
38     +     'A. Vishnu', 'K. D. Vogiatzis', 'D. Wang', 'J. H. Weare',
39     +     'M. J. Williamson', 'T. L. Windus', 'K. Woliński',
40     +     'A. T. Wong', 'Q. Wu', 'C. Yang', 'Q. Yu', 'M. Zacharias',
41     +     'Z. Zhang', 'Y. Zhao', 'and R. J. Harrison'/
42#include "stdio.fh"
43c
44      call util_print_centered(LuOut, 'CITATION', 40, .true.)
45      call util_print_centered(LuOut,
46     &     'Please cite the following reference when publishing',
47     &     40, .false.)
48      call util_print_centered(LuOut,
49     &     'results obtained with NWChem:',
50     &     40, .false.)
51      write(LuOut,*)
52      call util_print_authors(maxno_authors,name_author)
53
54      call util_print_centered(LuOut,
55     &     '"NWChem: Past, present, and future',
56     &     40, .false.)
57      call util_print_centered(LuOut,
58     &     'J. Chem. Phys. 152, 184102 (2020)',
59     &     40, .false.)
60      call util_print_centered(LuOut,
61     &     'doi:10.1063/5.0004997',
62     &     40, .false.)
63c
64      end
65c $Id$
66