{
load_file("stdlib.hoc")
load_file("stdrun.hoc")
}
strdef NRNDIR
NRNDIR = getcwd()
chdir("library")
func issplit() { // to avoid errors if multisplit is not loaded
return 0
}
load_file("params.hoc") // Simulation header file that initializes settings and variables
load_file("stdutil.hoc") // general utility procs and funcs (all model independent)
load_file("mview.hoc") // load modelview library
load_file("MorphologyUtilities.hoc") // Procs and funcs related to morphology
load_file("MembraneUtilities.hoc") // Procs and funcs related to membrane conductances
load_file("SimulationUtilities.hoc") // Procs and funcs related simulations (i.e SaveData())
load_file("CurrentInjections.hoc") // current injection simulation procedures
chdir(NRNDIR)
if (verbosity > 2) printf("Utility functions loaded \n")