-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTreePopulation2.cpp
More file actions
1254 lines (1127 loc) · 44.8 KB
/
TreePopulation2.cpp
File metadata and controls
1254 lines (1127 loc) · 44.8 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <stddef.h>
#include <math.h>
#include <fstream>
#include <sstream>
#include <algorithm>
#include <cctype>
#include <string>
#include "TreePopulation.h"
#include "Plot.h"
#include "Allometry.h"
#include "Tree.h"
#include "SimManager.h"
#include "ModelMath.h"
#include "BehaviorBase.h"
#include "ParsingFunctions.h"
#include "PlatformFuncs.h"
#include "GhostTreePopulation.h"
/////////////////////////////////////////////////////////////////////////////
// Holds more tree functions. Getters, setters, tree data member stuff
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// GetRandomDiam10Value
/////////////////////////////////////////////////////////////////////////////
float clTreePopulation::GetRandomDiam10Value(float fDiam10Seed) {
float fRandom = clModelMath::GetRand();
//I couldn't make the default assignment to m_fNewSeedlingDiam10 in the
//arguments list without compiler errors so I'm doing it here.
if (fDiam10Seed == 0)
fDiam10Seed = m_fNewSeedlingDiam10;
return (fDiam10Seed * (0.9995 + 0.001 * fRandom));
}
//////////////////////////////////////////////////////////////////////////////
// UpdateTree()
//////////////////////////////////////////////////////////////////////////////
void clTreePopulation::UpdateTree(clTree * p_oTree, short int iCode, int iValue) {
//For ints - no allometry - so just update the value
try
{
//Make sure the code is a good one - if not, throw error
if (iCode < 0 || iCode >= mp_iNumTreeIntVals[p_oTree->m_iSpecies][p_oTree->m_iType])
{
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::UpdateTree(int)" ;
std::stringstream s;
s << "Invalid data code: " << iCode;
stcErr.sMoreInfo = s.str();
throw(stcErr);
}
p_oTree->mp_iIntValues[iCode] = iValue;
}
catch (modelErr & err)
{
throw(err);
}
catch (modelMsg & msg)
{
throw(msg);
} //non-fatal error
catch (...)
{
modelErr stcErr;
stcErr.iErrorCode = UNKNOWN;
stcErr.sFunction = "clTreePopulation::UpdateTree(int)" ;
throw(stcErr);
}
}
//////////////////////////////////////////////////////////////////////////////
// UpdateTree()
//////////////////////////////////////////////////////////////////////////////
void clTreePopulation::UpdateTree(clTree *p_oTree, short int iCode, string sValue) {
//For strings - no allometry - so just update the value
try
{
//Make sure the code is a good one - if not, throw error
if (iCode < 0 || iCode >= mp_iNumTreeStringVals[p_oTree->m_iSpecies][p_oTree->m_iType])
{
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::UpdateTree(string)" ;
std::stringstream s;
s << "Invalid data code: " << iCode;
stcErr.sMoreInfo = s.str();
throw(stcErr);
}
p_oTree->mp_sStringValues[iCode] = sValue;
}
catch (modelErr & err)
{
throw(err);
}
catch (modelMsg & msg)
{
throw(msg);
} //non-fatal error
catch (...)
{
modelErr stcErr;
stcErr.iErrorCode = UNKNOWN;
stcErr.sFunction = "clTreePopulation::UpdateTree(char)" ;
throw(stcErr);
}
}
//////////////////////////////////////////////////////////////////////////////
// UpdateTree()
//////////////////////////////////////////////////////////////////////////////
void clTreePopulation::UpdateTree(clTree * p_oTree, short int iCode, bool bValue) {
//For bools - no allometry - so just update the value
try
{
//Make sure the code is a good one - if not, throw error
if (iCode < 0 || iCode >= mp_iNumTreeBoolVals[p_oTree->m_iSpecies][p_oTree->m_iType])
{
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::UpdateTree(bool)" ;
std::stringstream s;
s << "Invalid data code: " << iCode;
stcErr.sMoreInfo = s.str();
throw(stcErr);
}
p_oTree->mp_bBoolValues[iCode] = bValue;
}
catch (modelErr & err)
{
throw(err);
}
catch (modelMsg & msg)
{
throw(msg);
} //non-fatal error
catch (...)
{
modelErr stcErr;
stcErr.iErrorCode = UNKNOWN;
stcErr.sFunction = "clTreePopulation::UpdateTree(bool)" ;
throw(stcErr);
}
}
//////////////////////////////////////////////////////////////////////////////
// UpdateTree - float()
//////////////////////////////////////////////////////////////////////////////
void clTreePopulation::UpdateTree(clTree * p_oTree, short int iCode,
float fValue, bool bUpdateNow, bool bUpdateAllometry) {
try
{
float fAllomValue; //for calculating allometric values
unsigned short int iSp = p_oTree->GetSpecies(), iType = p_oTree->GetType();
bool bAllometryUpdated = false;
//Make sure the code is a good one - if not, throw error
if (iCode < 0 || iCode >= mp_iNumTreeFloatVals[iSp][iType])
{
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::UpdateTree(float)" ;
std::stringstream s;
s << "Invalid data code: " << iCode;
stcErr.sMoreInfo = s.str();
throw(stcErr);
}
//Verify that we're not trying to change X or Y - if so, throw an error.
if (iCode == mp_iXCode[iSp][iType] || iCode == mp_iYCode[iSp][iType])
{
modelErr stcErr;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
stcErr.sMoreInfo = "X and Y cannot be changed.";
throw(stcErr);
}
if (bUpdateAllometry)
{
//*******************************
// Update the tree's allometry
//*******************************
//>>>>>>>>>>> Tree is a seedling <<<<<<<<<<<
if (seedling == p_oTree->m_iType)
{
if (mp_iDiam10Code[iSp][iType] == iCode)
{ //update diam10
//reject a value below the minimum
if (fValue < MINDIAM) {
modelErr stcErr;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
stcErr.sMoreInfo = "Attempt to set seedling diameter below minimum.";
throw(stcErr);
}
p_oTree->mp_fFloatValues[iCode] = fValue;
//calculate height based on diam10
fAllomValue = mp_oAllom->CalcSeedlingHeight(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
bAllometryUpdated = true;
}
else if (mp_iHeightCode[iSp][iType] == iCode)
{
//Do not allow negative values
if (fValue <= 0) {
modelErr stcErr;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
stcErr.sMoreInfo = "Attempt to set seedling height to negative value.";
throw(stcErr);
}
p_oTree->mp_fFloatValues[iCode] = fValue;
//calculate diam10 based on height
fAllomValue = mp_oAllom->CalcSeedlingDiam10(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDiam10Code[iSp][iType]] = fAllomValue;
bAllometryUpdated = true;
}
else
{ //this is not an allometric value - just assign it
p_oTree->mp_fFloatValues[iCode] = fValue;
return;
}
//Check to see if this seedling is big enough to be a sapling
if (p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] > mp_fMaxSeedlingHeight[iSp])
{
//Re-do the allometry based on sapling equations, keeping constant the
//thing that was assigned
if (mp_iDiam10Code[iSp][iType] == iCode)
{ //update diam10
//convert diam10 to dbh
fAllomValue = mp_oAllom->ConvertDiam10ToDbh(fValue, iSp);
//calculate height based on diam10
fAllomValue = mp_oAllom->CalcSaplingHeight(fAllomValue, iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
}
else if (mp_iHeightCode[iSp][iType] == iCode)
{ //update height
//calculate dbh based on height
fAllomValue = mp_oAllom->CalcSaplingDbh(fValue, iSp);
//Convert dbh to diam10 and assign
fAllomValue = mp_oAllom->ConvertDbhToDiam10(fAllomValue, iSp);
p_oTree->mp_fFloatValues[mp_iDiam10Code[iSp][iType]] = fAllomValue;
}
ChangeTreeType(p_oTree, sapling);
//Just in case - is the sapling big enough to be an adult? If so,
//convert it a second time
if (p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][sapling]] >= mp_fMinAdultDbh[iSp])
{
//Convert the type and species codes to sapling
if (mp_iDiam10Code[iSp][iType] == iCode) //diam10 was updated
iCode = mp_iDbhCode[iSp][sapling]; //make it the dbh code
else
iCode = mp_iHeightCode[iSp][sapling]; //height code instead
iType = sapling;
//Re-do the allometry based on adult equations, keeping constant the
//thing that was assigned
if (mp_iDiam10Code[iSp][iType] == iCode)
{ //update diam10
//calculate height based on dbh
fAllomValue = mp_oAllom->CalcAdultHeight(p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]], iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
}
else if (mp_iHeightCode[iSp][iType] == iCode)
{ //update height
//calculate dbh based on height
fAllomValue = mp_oAllom->CalcAdultDbh(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fAllomValue;
}
else if (mp_iDbhCode[iSp][iType] == iCode)
{ //update dbh
//calculate height based on dbh
fAllomValue = mp_oAllom->CalcAdultHeight(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
}
ChangeTreeType(p_oTree, adult);
}
}
} //end of if (seedling == p_oTree->m_iTreeType)
//>>>>>>>>>>> Tree is a sapling <<<<<<<<<<<
else if (sapling == p_oTree->m_iType)
{
if (mp_iDiam10Code[iSp][iType] == iCode)
{ //update diam10
//reject a value below the minimum
if (fValue < m_fNewSeedlingDiam10) {
modelErr stcErr;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
stcErr.sMoreInfo = "Attempt to set sapling diameter below minimum.";
throw(stcErr);
}
p_oTree->mp_fFloatValues[iCode] = fValue;
//calculate dbh based on diam10
fAllomValue = mp_oAllom->ConvertDiam10ToDbh(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fAllomValue;
//calculate height based on dbh
fAllomValue = mp_oAllom->CalcSaplingHeight(fAllomValue, iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
bAllometryUpdated = true;
}
else if (mp_iHeightCode[iSp][iType] == iCode)
{ //update height
if (fValue <= 0) {
modelErr stcErr;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
stcErr.sMoreInfo = "Attempt to set sapling height to negative value.";
throw(stcErr);
}
//Does this height make the tree shorter than the max seedling height?
if (fValue < mp_fMaxSeedlingHeight[iSp])
{
//Assign height
p_oTree->mp_fFloatValues[iCode] = fValue;
//Re-do the allometry based on seedling equations, keeping height
//constant
//calculate diam10 based on height and assign
fAllomValue = mp_oAllom->CalcSeedlingDiam10(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDiam10Code[iSp][iType]] = fAllomValue;
ChangeTreeType(p_oTree, seedling);
bAllometryUpdated = true;
}
else
{ //normal - no shrinking back to seedling - update
p_oTree->mp_fFloatValues[iCode] = fValue;
//calculate dbh based on height
fAllomValue = mp_oAllom->CalcSaplingDbh(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fAllomValue;
//calculate diam10 based on dbh
fAllomValue = mp_oAllom->ConvertDbhToDiam10(fAllomValue, iSp);
p_oTree->mp_fFloatValues[mp_iDiam10Code[iSp][iType]] = fAllomValue;
bAllometryUpdated = true;
}
}
else if (mp_iDbhCode[iSp][iType] == iCode)
{ //update dbh
if (fValue <= 0) {
modelErr stcErr;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
stcErr.sMoreInfo = "Attempt to set sapling DBH to negative value.";
throw(stcErr);
}
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fValue;
//calculate diam10 based on dbh
fAllomValue = mp_oAllom->ConvertDbhToDiam10(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDiam10Code[iSp][iType]] = fAllomValue;
//calculate height based on dbh
fAllomValue = mp_oAllom->CalcSaplingHeight(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
bAllometryUpdated = true;
}
else
{ //this is not an allometric value - just assign it
p_oTree->mp_fFloatValues[iCode] = fValue;
return;
}
//Check to see if this sapling is big enough to be an adult
if (p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] >= mp_fMinAdultDbh[iSp])
{
//Re-do the allometry based on adult equations, keeping constant the
//thing that was assigned
if (mp_iDiam10Code[iSp][iType] == iCode)
{ //update diam10
//calculate height based on dbh
fAllomValue = mp_oAllom->CalcAdultHeight(p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]], iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
}
else if (mp_iHeightCode[iSp][iType] == iCode)
{ //update height
//calculate dbh based on height
fAllomValue = mp_oAllom->CalcAdultDbh(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fAllomValue;
}
else if (mp_iDbhCode[iSp][iType] == iCode)
{ //update dbh
//calculate height based on dbh
fAllomValue = mp_oAllom->CalcAdultHeight(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
}
ChangeTreeType(p_oTree, adult);
}
} //end of else if (sapling == p_oTree->m_iTreeType)
//>>>>>>>>>>> Tree is an adult or snag <<<<<<<<<<<
else if (adult == p_oTree->m_iType || snag == p_oTree->m_iType)
{
if (mp_iHeightCode[iSp][iType] == iCode)
{ //update height
if (fValue <= 0) {
modelErr stcErr;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
stcErr.sMoreInfo = "Attempt to set adult height to negative value.";
throw(stcErr);
}
p_oTree->mp_fFloatValues[iCode] = fValue;
//calculate dbh based on height
fValue = mp_oAllom->CalcAdultDbh(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fValue;
bAllometryUpdated = true;
}
else if (mp_iDbhCode[iSp][iType] == iCode)
{ //update dbh
if (fValue <= 0) {
modelErr stcErr;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
stcErr.sMoreInfo = "Attempt to set adult DBH to negative value.";
throw(stcErr);
}
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fValue;
//calculate height based on dbh
fValue = mp_oAllom->CalcAdultHeight(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fValue;
bAllometryUpdated = true;
}
else
{ //this is not an allometric value - just assign it
p_oTree->mp_fFloatValues[iCode] = fValue;
return;
}
//Check dbh - smaller than sapling cutoff if adult? If so, send this back to
//sapling status
if (adult == p_oTree->m_iType && p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] < mp_fMinAdultDbh[iSp])
{
//Re-do the allometry based on sapling equations, keeping constant the
//thing that was assigned
if (mp_iDbhCode[iSp][iType] == iCode)
{ //update dbh
//calculate height based on dbh
fAllomValue = mp_oAllom->CalcSaplingHeight(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] = fAllomValue;
}
else if (mp_iHeightCode[iSp][iType] == iCode)
{ //update height
//calculate dbh based on height and assign
fAllomValue = mp_oAllom->CalcSaplingDbh(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fAllomValue;
}
ChangeTreeType(p_oTree, sapling);
}
} //end of else if (adult == p_oTree->m_iTreeType)
//>>>>>>>>>>> Tree is an another type <<<<<<<<<<<
else
{
//throw an error that this tree is not an expected type - this is mostly
//to make sure we find this if we're adding other types
modelErr stcErr;
stcErr.iErrorCode = TREE_WRONG_TYPE;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
throw(stcErr);
}
}
else
{
//Don't automatically update allometry
//Check to see if we're supposed to update height - if we are,
//set the "allometry updated" flag so the hash table will be
//resorted
if (mp_iHeightCode[iSp][iType] == iCode)
{
bAllometryUpdated = true;
}
p_oTree->mp_fFloatValues[iCode] = fValue;
//If this is a sapling, and we're updating either DBH or diam10, update
//the other
if (sapling == p_oTree->m_iType)
{
if (mp_iDiam10Code[iSp][iType] == iCode)
{
//calculate dbh based on diam10
fAllomValue = mp_oAllom->ConvertDiam10ToDbh(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] = fAllomValue;
}
else if (mp_iDbhCode[iSp][iType] == iCode)
{
//calculate diam10 based on dbh
fAllomValue = mp_oAllom->ConvertDbhToDiam10(fValue, iSp);
p_oTree->mp_fFloatValues[mp_iDiam10Code[iSp][iType]] = fAllomValue;
}
}
if (seedling == p_oTree->m_iType && p_oTree->mp_fFloatValues[mp_iHeightCode[iSp][iType]] > mp_fMaxSeedlingHeight[iSp])
{
//This height makes the tree taller than the max seedling height
ChangeTreeType(p_oTree, sapling);
}
else if (sapling == p_oTree->m_iType && mp_iHeightCode[iSp][iType] == iCode && fValue < mp_fMaxSeedlingHeight[iSp])
{
//This height makes the tree shorter than the max seedling height
ChangeTreeType(p_oTree, seedling);
}
//Check to see if this sapling is big enough to be an adult
else if (sapling == p_oTree->m_iType && p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] >= mp_fMinAdultDbh[iSp])
{
ChangeTreeType(p_oTree, adult);
}
else if (adult == p_oTree->m_iType && p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iType]] < mp_fMinAdultDbh[iSp])
{
ChangeTreeType(p_oTree, sapling);
}
}
//If we're supposed to update now, do it
if (bAllometryUpdated)
{
if (bUpdateNow)
UpdateTreeInHashTable(p_oTree);
else
m_bDoUpdates = true;
}
} //end of try block
catch (modelErr & err)
{
throw(err);
}
catch (modelMsg & msg)
{
throw(msg);
} //non-fatal error
catch (...)
{
modelErr stcErr;
stcErr.iErrorCode = UNKNOWN;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
throw(stcErr);
}
}
//////////////////////////////////////////////////////////////////////////////
// ChangeTreeType()
//////////////////////////////////////////////////////////////////////////////
void clTreePopulation::ChangeTreeType(clTree * p_oTree, enum iTreeType iNewType) {
try
{
//Copies of the old arrays
float * p_fFloatCopy = NULL;
int * p_iIntCopy = NULL;
string * p_sStringCopy = NULL;
bool * p_bBoolCopy = NULL;
unsigned short int iSp, iOldType, i, j;
iSp = p_oTree->m_iSpecies;
iOldType = p_oTree->m_iType;
//Declare the copy arrays and copy in the tree's values
p_fFloatCopy = new float[mp_iNumTreeFloatVals[iSp][iOldType]];
for (i = 0; i < mp_iNumTreeFloatVals[iSp][iOldType]; i++)
p_fFloatCopy[i] = p_oTree->mp_fFloatValues[i];
p_iIntCopy = new int[mp_iNumTreeIntVals[iSp][iOldType]];
for (i = 0; i < mp_iNumTreeIntVals[iSp][iOldType]; i++)
p_iIntCopy[i] = p_oTree->mp_iIntValues[i];
p_sStringCopy = new string[mp_iNumTreeStringVals[iSp][iOldType]];
for (i = 0; i < mp_iNumTreeStringVals[iSp][iOldType]; i++)
p_sStringCopy[i] = p_oTree->mp_sStringValues[i];
p_bBoolCopy = new bool[mp_iNumTreeBoolVals[iSp][iOldType]];
for (i = 0; i < mp_iNumTreeBoolVals[iSp][iOldType]; i++)
p_bBoolCopy[i] = p_oTree->mp_bBoolValues[i];
//Delete out the tree's old variable array and redeclare
delete[] p_oTree->mp_fFloatValues; p_oTree->mp_fFloatValues = NULL;
delete[] p_oTree->mp_iIntValues; p_oTree->mp_iIntValues = NULL;
delete[] p_oTree->mp_sStringValues; p_oTree->mp_sStringValues = NULL;
delete[] p_oTree->mp_bBoolValues; p_oTree->mp_bBoolValues = NULL;
p_oTree->mp_fFloatValues = new float[mp_iNumTreeFloatVals[iSp][iNewType]];
for (i = 0; i < mp_iNumTreeFloatVals[iSp][iNewType]; i++)
p_oTree->mp_fFloatValues[i] = 0.0;
p_oTree->mp_iIntValues = new int[mp_iNumTreeIntVals[iSp][iNewType]];
for (i = 0; i < mp_iNumTreeIntVals[iSp][iNewType]; i++)
p_oTree->mp_iIntValues[i] = 0;
p_oTree->mp_sStringValues = new string[mp_iNumTreeStringVals[iSp][iNewType]];
for (i = 0; i < mp_iNumTreeStringVals[iSp][iNewType]; i++)
p_oTree->mp_sStringValues[i] = "";
p_oTree->mp_bBoolValues = new bool[mp_iNumTreeBoolVals[iSp][iNewType]];
for (i = 0; i < mp_iNumTreeBoolVals[iSp][iNewType]; i++)
p_oTree->mp_bBoolValues[i] = false;
//Assign the new type
p_oTree->m_iType = iNewType;
//Now any other values that are present in both types
for (i = 0; i < mp_iNumTreeIntVals[iSp][iOldType]; i++)
for (j = 0; j < mp_iNumTreeIntVals[iSp][iNewType]; j++)
if (mp_sIntLabels[iSp][iNewType][j].compare(mp_sIntLabels[iSp][iOldType][i]) == 0)
p_oTree->mp_iIntValues[j] = p_iIntCopy[i];
for (i = 0; i < mp_iNumTreeFloatVals[iSp][iOldType]; i++)
for (j = 0; j < mp_iNumTreeFloatVals[iSp][iNewType]; j++)
if (mp_sFloatLabels[iSp][iNewType][j].compare(mp_sFloatLabels[iSp][iOldType][i]) == 0)
p_oTree->mp_fFloatValues[j] = p_fFloatCopy[i];
for (i = 0; i < mp_iNumTreeStringVals[iSp][iOldType]; i++)
for (j = 0; j < mp_iNumTreeStringVals[iSp][iNewType]; j++)
if (mp_sStringLabels[iSp][iNewType][j].compare(mp_sStringLabels[iSp][iOldType][i]) == 0)
p_oTree->mp_sStringValues[j] = p_sStringCopy[i];
for (i = 0; i < mp_iNumTreeBoolVals[iSp][iOldType]; i++)
for (j = 0; j < mp_iNumTreeBoolVals[iSp][iNewType]; j++)
if (mp_sBoolLabels[iSp][iNewType][j].compare(mp_sBoolLabels[iSp][iOldType][i]) == 0)
p_oTree->mp_bBoolValues[j] = p_bBoolCopy[i];
//If seedling to sapling, do a dbh
if (iOldType == seedling && iNewType == sapling)
p_oTree->mp_fFloatValues[mp_iDbhCode[iSp][iNewType]] =
mp_oAllom->ConvertDiam10ToDbh(p_fFloatCopy[mp_iDiam10Code[iSp][iOldType]], iSp);
//If adult to sapling, do a diam10
if (iOldType == adult && iNewType == sapling)
p_oTree->mp_fFloatValues[mp_iDiam10Code[iSp][iNewType]] =
mp_oAllom->ConvertDbhToDiam10(p_fFloatCopy[mp_iDbhCode[iSp][iOldType]], iSp);
//Delete the copy arrays
delete[] p_fFloatCopy;
delete[] p_iIntCopy;
delete[] p_sStringCopy;
delete[] p_bBoolCopy;
} //end of try block
catch (modelErr & err)
{
throw(err);
}
catch (modelMsg & msg)
{
throw(msg);
} //non-fatal error
catch (...)
{
modelErr stcErr;
stcErr.iErrorCode = UNKNOWN;
stcErr.sFunction = "clTreePopulation::UpdateTree" ;
throw(stcErr);
}
}
//////////////////////////////////////////////////////////////////////////////
// GetMinAdultDBH()
//////////////////////////////////////////////////////////////////////////////
float clTreePopulation::GetMinAdultDBH(int iSpecies) {
if (iSpecies < 0 || iSpecies >= m_iNumSpecies)
{
//invalid species - throw an error
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetMinAdultDBH" ;
std::stringstream s;
s << "Unrecognized species " << iSpecies;
stcErr.sMoreInfo = s.str();
throw(stcErr);
}
return mp_fMinAdultDbh[iSpecies];
}
/////////////////////////////////////////////////////////////////////////////
// TranslateSpeciesNameToCode()
/////////////////////////////////////////////////////////////////////////////
short int clTreePopulation::TranslateSpeciesNameToCode(string sSpeciesName) {
short int iCode = -1, //preset to "not found" code
i; //loop counter
if (NULL == mp_speciesCodes) return iCode;
//compare the species string passed to each of the name strings in our list
// - if there's a match set iCode to that species's code
for (i = 0; i < m_iNumSpecies; i++)
{
if (mp_speciesCodes[i].sName.compare(sSpeciesName) == 0)
iCode = mp_speciesCodes[i].iCode;
} //end of for (i = 0; i < m_iNumSpecies; i++)
return iCode;
}
/////////////////////////////////////////////////////////////////////////////
// TranslateSpeciesCodeToName()
/////////////////////////////////////////////////////////////////////////////
string clTreePopulation::TranslateSpeciesCodeToName(int iSpecies) {
short int i; //loop counter
if (NULL == mp_speciesCodes) return "";
//compare the species code passed to each of the codes in our list - if
//there's a match return that species's name
for (i = 0; i < m_iNumSpecies; i++)
{
if (mp_speciesCodes[i].iCode == iSpecies)
return mp_speciesCodes[i].sName;
} //end of for (i = 0; i < m_iNumSpecies; i++)
return "";
}
//////////////////////////////////////////////////////////////////////////////
// RegisterDataMember()
//////////////////////////////////////////////////////////////////////////////
short int clTreePopulation::RegisterDataMember(string sLabel, int iSpecies,
int iType, short int **p_iNumTreeVals, string ***p_sLabels) {
short int iNumVals, //number of values for this species/type combo
iReturnCode = -1, //what we'll return
i;
//Check to make sure that the data label is not empty
if (0 == sLabel.length()) {
modelErr stcErr;
stcErr.sFunction = "clTreePopulation::RegisterDataMember" ;
stcErr.iErrorCode = BAD_DATA;
stcErr.sMoreInfo = "Data label is required.";
throw(stcErr);
}
//Find the first open space for this type and species
iNumVals = p_iNumTreeVals[iSpecies][iType];
for (i = 0; i < iNumVals; i++) {
if (0 == p_sLabels[iSpecies][iType][i].length()) {
iReturnCode = i;
break;
}
if (p_sLabels[iSpecies][iType][i].compare(sLabel) == 0) {
modelErr stcErr;
stcErr.sFunction = "clTreePopulation::RegisterDataMember" ;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sMoreInfo = "Data member already registered";
throw(stcErr);
}
}
//If we didn't find anything, throw an error
if (-1 == iReturnCode)
{
modelErr stcErr;
stcErr.sFunction = "clTreePopulation::RegisterDataMember" ;
stcErr.iErrorCode = ILLEGAL_OP;
stcErr.sMoreInfo = "Too many tree data member registrations";
throw(stcErr);
}
p_sLabels[iSpecies][iType][iReturnCode] = sLabel;
return iReturnCode;
}
//////////////////////////////////////////////////////////////////////////////
// RegisterInt()
//////////////////////////////////////////////////////////////////////////////
short int clTreePopulation::RegisterInt(string sLabel, int iSpecies, int iType) {
return RegisterDataMember(sLabel, iSpecies, iType, mp_iNumTreeIntVals,
mp_sIntLabels);
}
//////////////////////////////////////////////////////////////////////////////
// RegisterFloat()
//////////////////////////////////////////////////////////////////////////////
short int clTreePopulation::RegisterFloat(string sLabel, int iSpecies, int iType) {
return RegisterDataMember(sLabel, iSpecies, iType, mp_iNumTreeFloatVals,
mp_sFloatLabels);
}
//////////////////////////////////////////////////////////////////////////////
// RegisterChar()
//////////////////////////////////////////////////////////////////////////////
short int clTreePopulation::RegisterChar(string sLabel, int iSpecies, int iType) {
return RegisterDataMember(sLabel, iSpecies, iType, mp_iNumTreeStringVals,
mp_sStringLabels);
}
//////////////////////////////////////////////////////////////////////////////
// RegisterBool()
//////////////////////////////////////////////////////////////////////////////
short int clTreePopulation::RegisterBool(string sLabel, int iSpecies, int iType) {
return RegisterDataMember(sLabel, iSpecies, iType, mp_iNumTreeBoolVals,
mp_sBoolLabels);
}
//////////////////////////////////////////////////////////////////////////////
// GetDataCode()
//////////////////////////////////////////////////////////////////////////////
short int clTreePopulation::GetIntDataCode(string sLabel, int iSpecies,
int iType) {
short int iReturnCode = -1, i;
//validate the species and type codes
if (iSpecies < 0 || iSpecies >= m_iNumSpecies || iType < 0 || iType >= m_iNumTypes)
{ //throw an error
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetIntDataCode" ;
std::stringstream s;
s << "Unrecognized species or type. Species = " << iSpecies << " Type = " << iType;
stcErr.sMoreInfo = s.str();
throw stcErr;
}
//Make sure the label passed wasn't an empty string
if (0 == sLabel.length())
{
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetDataCode" ;
stcErr.sMoreInfo = "Data label is required.";
throw stcErr;
}
//Search for the label to return
for (i = 0; i < mp_iNumTreeIntVals[iSpecies][iType]; i++)
if (mp_sIntLabels[iSpecies][iType][i].compare(sLabel) == 0) {
iReturnCode = i;
break;
}
return iReturnCode;
}
//----------------------------------------------------------------------------
short int clTreePopulation::GetFloatDataCode(string sLabel, int iSpecies,
int iType) {
short int iReturnCode = -1, i;
//validate the species and type codes
if (iSpecies < 0 || iSpecies >= m_iNumSpecies || iType < 0 || iType >= m_iNumTypes)
{ //throw an error
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetFloatDataCode" ;
std::stringstream s;
s << "Unrecognized species or type. Species = " << iSpecies << " Type = " << iType;
stcErr.sMoreInfo = s.str();
throw stcErr;
}
//Make sure the label passed wasn't an empty string
if (0 == sLabel.length())
{
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetDataCode" ;
stcErr.sMoreInfo = "Data label is required.";
throw stcErr;
}
//Search for the label to return
for (i = 0; i < mp_iNumTreeFloatVals[iSpecies][iType]; i++)
if (mp_sFloatLabels[iSpecies][iType][i].compare(sLabel) == 0) {
iReturnCode = i;
break;
}
return iReturnCode;
}
//----------------------------------------------------------------------------
short int clTreePopulation::GetStringDataCode(string sLabel, int iSpecies,
int iType) {
short int iReturnCode = -1, i;
//validate the species and type codes
if (iSpecies < 0 || iSpecies >= m_iNumSpecies || iType < 0 || iType >= m_iNumTypes)
{ //throw an error
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetStringDataCode" ;
std::stringstream s;
s << "Unrecognized species or type. Species = " << iSpecies << " Type = " << iType;
stcErr.sMoreInfo = s.str();
throw stcErr;
}
//Make sure the label passed wasn't an empty string
if (0 == sLabel.length())
{
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetDataCode" ;
stcErr.sMoreInfo = "Data label is required.";
throw stcErr;
}
//Search for the label to return
for (i = 0; i < mp_iNumTreeStringVals[iSpecies][iType]; i++)
if (mp_sStringLabels[iSpecies][iType][i].compare(sLabel) == 0) {
iReturnCode = i;
break;
}
return iReturnCode;
}
//----------------------------------------------------------------------------
short int clTreePopulation::GetBoolDataCode(string sLabel, int iSpecies, int iType) {
short int iReturnCode = -1, i;
//validate the species and type codes
if (iSpecies < 0 || iSpecies >= m_iNumSpecies || iType < 0 || iType >= m_iNumTypes)
{ //throw an error
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetBoolDataCode" ;
std::stringstream s;
s << "Unrecognized species or type. Species = " << iSpecies << " Type = " << iType;
stcErr.sMoreInfo = s.str();
throw stcErr;
}
//Make sure the label passed wasn't an empty string
if (0 == sLabel.length())
{
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetDataCode" ;
stcErr.sMoreInfo = "Data label is required.";
throw stcErr;
}
//Search for the label to return
for (i = 0; i < mp_iNumTreeBoolVals[iSpecies][iType]; i++)
if (mp_sBoolLabels[iSpecies][iType][i].compare(sLabel) == 0) {
iReturnCode = i;
break;
}
return iReturnCode;
}
//----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
// GetDataLabel
//////////////////////////////////////////////////////////////////////////////
string clTreePopulation::GetIntDataLabel(short int iCode, int iSpecies, int iType) {
//validate the species and type codes
if (iSpecies < 0 || iSpecies >= m_iNumSpecies || iType < 0 || iType >= m_iNumTypes)
{ //throw an error
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetIntDataLabel" ;
std::stringstream s;
s << "Unrecognized species or type. Species = " << iSpecies << " Type = " << iType;
stcErr.sMoreInfo = s.str();
throw stcErr;
}
//If the code's invalid, return an empty string
if (iCode < 0 || iCode >= mp_iNumTreeIntVals[iSpecies][iType])
return "";
else
return mp_sIntLabels[iSpecies][iType][iCode];
}
//----------------------------------------------------------------------------
string clTreePopulation::GetFloatDataLabel(short int iCode, int iSpecies, int iType) {
//validate the species and type codes
if (iSpecies < 0 || iSpecies >= m_iNumSpecies || iType < 0 || iType >= m_iNumTypes)
{ //throw an error
modelErr stcErr;
stcErr.iErrorCode = BAD_DATA;
stcErr.sFunction = "clTreePopulation::GetFloatDataLabel" ;
std::stringstream s;
s << "Unrecognized species or type. Species = " << iSpecies << " Type = " << iType;
stcErr.sMoreInfo = s.str();
throw stcErr;
}
//If the code's invalid, return an empty string
if (iCode < 0 || iCode >= mp_iNumTreeFloatVals[iSpecies][iType])
return "";
else
return mp_sFloatLabels[iSpecies][iType][iCode];