FireSTARR
Loading...
Searching...
No Matches
firestarr
src
cpp
LogPoints.h
1
/* Copyright (c) His Majesty the King in Right of Canada as represented by the Minister of Natural Resources, 2024-2025. */
2
3
/* SPDX-License-Identifier: AGPL-3.0-or-later */
4
#include "stdafx.h"
5
#include "CellPoints.h"
6
7
namespace
fs::sim
8
{
9
constexpr
auto
STAGE_CONDENSE =
'C'
;
10
constexpr
auto
STAGE_NEW =
'N'
;
11
constexpr
auto
STAGE_SPREAD =
'S'
;
12
constexpr
auto
STAGE_INVALID =
'X'
;
13
14
void
init_log_points(
15
const
string
dir_out,
16
bool
do_log,
17
size_t
id
,
18
DurationSize start_time);
19
void
log_point(
size_t
step,
20
const
char
stage,
21
const
DurationSize time,
22
const
XYSize x,
23
const
XYSize y);
24
void
log_points(
size_t
step,
25
const
char
stage,
26
const
DurationSize time,
27
const
CellPoints& points);
28
};
Generated by
1.12.0