cloudy
trunk
Main Page
Related Pages
Data Structures
Files
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
source
init_coreload_postparse.cpp
Go to the documentation of this file.
1
/* This file is part of Cloudy and is copyright (C)1978-2008 by Gary J. Ferland and
2
* others. For conditions of distribution and use see copyright notice in license.txt */
3
/*InitCoreloadPostparse initialization at start, called from cloudy
4
* after parser, will be called one time per core load */
5
#include "
cddefines.h
"
6
#include "
assertresults.h
"
7
#include "
init.h
"
8
9
/*InitCoreloadPostparse initialization at start, called from cloudy
10
* after parser, will be called one time per core load */
11
void
InitCoreloadPostparse
(
void
)
12
{
13
14
static
int
nCalled = 0;
15
16
DEBUG_ENTRY
(
"InitCoreloadPostparse()"
);
17
18
/* only do this once per coreload */
19
if
( nCalled > 0 )
20
{
21
return
;
22
}
23
24
/* this is first call, increment the nCalled counter so we never do this again */
25
++nCalled;
26
27
assertresults
.
SumErrorCaseAssert
= 0.;
28
assertresults
.
nSumErrorCaseAssert
= 0;
29
30
return
;
31
}
Generated for cloudy by
1.8.3.1