Changeset 027140 for src/bin


Ignore:
Timestamp:
Jun 8, 2012, 5:45:06 PM (13 years ago)
Author:
Frederik Heber <heber@…>
Children:
d11832
Parents:
31c708
Message:

Added output of number of AOs, AO density matrix, and name of basis set.

  • this is a first test of whether we find and may access the necessary components for outputting the density to the multigrid solver.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/bin/mpqc/mpqc.cc

    r31c708 r027140  
    949949         << endl;
    950950  }
    951 
    952951  if (parsedkv.nonnull()) print_unseen(parsedkv, input);
    953952
    954953  if (print_timings)
    955954    if (tim.nonnull()) tim->print(ExEnv::out0());
     955
     956  // here, we may gather the results
     957  // we start to construct the MPQC_Data object
     958  {
     959     Ref<Wavefunction> wfn;
     960     wfn << mole;
     961     ExEnv::out0() << "The number of atomic orbitals: " << wfn->ao_dimension()->n() << endl;
     962     ExEnv::out0() << "The AO density matrix is ";
     963     wfn->ao_density()->print(ExEnv::out0());
     964     ExEnv::out0() << "The Gaussian basis is " << wfn->basis()->name() << endl;
     965  }
     966
    956967
    957968  delete[] basename;
Note: See TracChangeset for help on using the changeset viewer.