Cloudy
Spectral Synthesis Code for Astrophysics
Loading...
Searching...
No Matches
init.h
Go to the documentation of this file.
1/* This file is part of Cloudy and is copyright (C)1978-2025 by Gary J. Ferland and
2 * others. For conditions of distribution and use see copyright notice in license.txt */
3
4#ifndef INIT_H_
5#define INIT_H_
6
7/* initialization routines for Cloudy
8 * InitCoreload - one time initialization, called from cdInit
9 * InitCoreloadPostparse - one time initialization, called after parser
10 * InitDefaultsPreparse initialization at start of simulation, called from cloudy
11 * before parser, will be called one time per sim in grid
12 * InitSimPostparse initialization at start of simulation, called from cloudy
13 * after parser, will be called one time per sim in grid
14 */
15
20void InitCoreload( void );
21
24void InitDefaultsPreparse( void );
25
28void InitCoreloadPostparse( void );
29
32void InitSimPostparse( void );
33
36void zero(void);
37
38#endif /* INIT_H_ */
void zero(void)
Definition zero.cpp:30
void InitDefaultsPreparse(void)
Definition init_defaults_preparse.cpp:45
void InitSimPostparse(void)
Definition init_sim_postparse.cpp:33
void InitCoreloadPostparse(void)
Definition init_coreload_postparse.cpp:13
void InitCoreload(void)
Definition init_coreload.cpp:27