This file is indexed.

/usr/share/psi4/samples/mcscf1/test.in is in psi4-data 1:1.1-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#! ROHF 6-31G** energy of the $^{3}B@@1$  state of CH2, with Z-matrix input. The occupations
#! are specified explicitly.

nucenergy =   6.64841891890875  #TEST
refenergy = -38.91136934915929  #TEST

molecule ch2 {
    0 3
    c
    h 1 b1
    h 1 b1 2 a1

    b1 = 1.0
    a1 = 125.0
}

set {
    reference rohf
    basis     6-31G**
    docc      [2, 0, 0, 1]
    socc      [1, 0, 1, 0]
}

thisenergy = energy('mcscf')

compare_values(nucenergy, ch2.nuclear_repulsion_energy(), 9, "Nuclear repulsion energy") #TEST
compare_values(refenergy, thisenergy, 9, "Reference energy")                             #TEST