-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFileHandling.h
55 lines (45 loc) · 1.3 KB
/
FileHandling.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef __FileHandling_h__
#define __FileHandling_h__
#include <iostream>
#include <fstream>
#include "Parameters.h"
class FileHandling
{
public:
FileHandling();
virtual ~FileHandling();
void readInputFile();
protected:
void readSandyDamageFile();
void readExpenseFile();
void readBoroughFileNYC();
void readDemoFileNYC();
void readHHsizeFileNYC();
void readIncomeFileNYC();
void readSubIncomeFileNYC();
void readSandyDamagePredictorFileNYC();
void readSandyFinancialLossFileNYC();
void readSandyPTSDFileNYC();
void readSandyFinancialReimbursementFileNYC();
public:
//DemoVector newYork;
/*HouseholdVector _newYorkHHsize;
IncomeVector _newYorkIncome;
SubIncomeVector _newYorkIncDiv;
ExpenseVector _newYorkExpense;
SandyDamageVector _newYorkSandyDamage;*/
//SandyFinLossVector _newYorkSandyFinLoss;
//SandyPTSDvector _newYorkSandyPTSD;
BoroughVector newYorkBoro;
DemographMap newYorkMap;
HouseHoldMap newYorkHHmap;
IncomeMap newYorkIncMap;
SubIncomeMap newYorkSubIncMap;
ExpenseMap newYorkExpenseMap;
SandyDamageMap newYorkSandyDamageMap;
SandyFinLossMap newYorkSandyFinLossMap;
SandyPTSDstatusMap newYorkSandyPTSDMap;
SandyPTSDxMap newYorkSandyPTSDsympMap;
SandyFinReimburseMap newYorkSandyFinReimburseMap;
};
#endif __FileHandling_h__