source: ThirdParty/mpqc_open/src/lib/util/psi3/libpsio/get_volpath.cc@ 866dec

AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity PythonUI_with_named_parameters StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 866dec was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*!
2 \file get_volpath.c
3 \ingroup (PSIO)
4*/
5
6#include <stdio.h>
7#include <util/psi3/libpsio/psifiles.h>
8#include <util/psi3/libpsio/psio.h>
9
10namespace psi3 {
11namespace libpsio {
12
13/*
14** PSIO_GET_VOLPATH(): Get the path to a given volume for file number
15** 'unit'.
16**
17** \ingroup (PSIO)
18*/
19int psio_get_volpath(unsigned int unit, unsigned int volume, char *path)
20{
21 int errcod;
22 char ip_token[PSIO_MAXSTR];
23
24 sprintf(ip_token,":PSI:FILES:FILE%u:VOLUME%u",unit,volume+1);
25// errcod = ip_data(ip_token,"%s",path,0);
26// if(errcod == IPE_OK) return(0);
27
28 sprintf(ip_token,":PSI:FILES:DEFAULT:VOLUME%u",volume+1);
29// errcod = ip_data(ip_token,"%s",path,0);
30// if(errcod == IPE_OK) return(0);
31
32 sprintf(ip_token,":DEFAULT:FILES:FILE%u:VOLUME%u",unit,volume+1);
33// errcod = ip_data(ip_token,"%s",path,0);
34// if(errcod == IPE_OK) return(0);
35
36 sprintf(ip_token,":DEFAULT:FILES:DEFAULT:VOLUME%u",volume+1);
37// errcod = ip_data(ip_token,"%s",path,0);
38// if(errcod == IPE_OK) return(0);
39
40 /* default to /tmp/ for everything but chkpt */
41 if(unit == PSIF_CHKPT) sprintf(path, "./");
42 else sprintf(path, "/tmp/");
43 return(1);
44}
45
46
47/*
48** PSIO_GET_VOLPATH_DEFAULT(): Get the default path for the nth volume
49** of any file.
50**
51** \ingroup (PSIO)
52*/
53int psio_get_volpath_default(unsigned int volume, char *path)
54{
55 int errcod;
56 char ip_token[PSIO_MAXSTR];
57
58 sprintf(ip_token,":PSI:FILES:DEFAULT:VOLUME%u",volume+1);
59// errcod = ip_data(ip_token,"%s",path,0);
60// if(errcod == IPE_OK) return(0);
61
62 sprintf(ip_token,":DEFAULT:FILES:DEFAULT:VOLUME%u",volume+1);
63// errcod = ip_data(ip_token,"%s",path,0);
64// if(errcod == IPE_OK) return(0);
65
66 /* default to /tmp/ */
67 sprintf(path, "/tmp/");
68
69 return(1);
70}
71
72}
73}
Note: See TracBrowser for help on using the repository browser.