mirror of https://github.com/QMCPACK/qmcpack.git
25 lines
1.0 KiB
Python
25 lines
1.0 KiB
Python
##################################################################
|
|
## (c) Copyright 2018- by Jaron T. Krogel ##
|
|
##################################################################
|
|
|
|
|
|
#====================================================================#
|
|
# pyscf_analyzer.py #
|
|
# Supports data analysis for PySCF output. Currently just a #
|
|
# placeholder for further development. #
|
|
# #
|
|
# Content summary: #
|
|
# PyscfAnalyzer #
|
|
# SimulationAnalyzer class for PySCF. #
|
|
# #
|
|
#====================================================================#
|
|
|
|
|
|
from simulation import NullSimulationAnalyzer
|
|
|
|
|
|
class PyscfAnalyzer(NullSimulationAnalyzer):
|
|
None
|
|
#end class PyscfAnalyzer
|
|
|