File failed to load: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/extensions/ams.js
ALMaSS  1.2 (after EcoStack, March 2024)
The Animal, Landscape and Man Simulation System
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NLCarrotsSpring Class Reference

NLCarrotsSpring class
. More...

#include <NLCarrotsSpring.h>

Inheritance diagram for NLCarrotsSpring:
Crop

Public Member Functions

virtual bool Do (Farm *a_farm, LE *a_field, FarmEvent *a_ev)
 The one and only method for a crop management plan. All farm actions go through here. More...
 
 NLCarrotsSpring (TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
 
void SetUpFarmCategoryInformation ()
 
- Public Member Functions inherited from Crop
virtual ~Crop ()
 
 Crop (TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
 
int GetFirstDate (void)
 
void ChooseNextCrop (int a_no_dates)
 Chooses the next crop to grow in a field. More...
 
int GetCropClassification ()
 
void SetCropClassification (int a_classification)
 
void GetCropType (TTypesOfCrops a_toc)
 
TTypesOfCrops GetCropType ()
 
FarmManagementCategory LookUpManagementCategory (int a_todo)
 
bool GetForceSpringOK ()
 

Additional Inherited Members

- Public Attributes inherited from Crop
TTypesOfVegetation m_tov
 
- Protected Member Functions inherited from Crop
void SimpleEvent (long a_date, int a_todo, bool a_lock)
 Adds an event to this crop management. More...
 
void SimpleEvent_ (long a_date, int a_todo, bool a_lock, Farm *a_farm, LE *a_field)
 Adds an event to this crop management without relying on member variables. More...
 
bool StartUpCrop (int a_spring, std::vector< std::vector< int >> a_flexdates, int a_todo)
 
Holds the translation between the farm operation enum for each cropand the farm management category associated with it More...
 
bool AphidDamage (LE *a_field)
 Compares aphid numbers per m2 with a threshold to return true if threshold is exceeded. More...
 
- Protected Attributes inherited from Crop
Farmm_farm
 
LEm_field
 
FarmEventm_ev
 
int m_first_date
 
int m_count
 
int m_last_date
 
int m_ddegstoharvest
 
int m_base_elements_no
 
Landscapem_OurLandscape
 
bool m_forcespringpossible = false
 Used to signal that the crop can be forced to start in spring. More...
 
TTypesOfCrops m_toc
 The Crop type in terms of the TTypesOfCrops list (smaller list than tov, no country designation) More...
 
int m_CropClassification
 Contains information on whether this is a winter crop, spring crop, or catch crop that straddles the year boundary (0,1,2) More...
 
vector< FarmManagementCategorym_ManagementCategories
 Holds the translation between the farm operation enum for each crop and the farm management category associated with it. More...
 
- Static Protected Attributes inherited from Crop
static int m_date_modifier = 0
 Holds a value that shifts test pesticide use by this many days in crops modified to use it. More...
 

Detailed Description

NLCarrotsSpring class
.

See NLCarrotsSpring.h::NLCarrotsSpringToDo for a complete list of all possible events triggered codes by the carrots management plan. When triggered these events are handled by Farm and are available as information for other objects such as animal and bird models.

Constructor & Destructor Documentation

◆ NLCarrotsSpring()

NLCarrotsSpring::NLCarrotsSpring ( TTypesOfVegetation  a_tov,
TTypesOfCrops  a_toc,
Landscape a_L 
)
inline
73  : Crop(a_tov, a_toc, a_L)
74  {
75  // When we start it off, the first possible date for a farm operation is 20th October
76  // This information is used by other crops when they decide how much post processing of
77  // the management is allowed after harvest before the next crop starts.
78  m_first_date=g_date->DayInYear( 31,3 );
80  }

References Calendar::DayInYear(), g_date, Crop::m_first_date, and SetUpFarmCategoryInformation().

Member Function Documentation

◆ Do()

bool NLCarrotsSpring::Do ( Farm a_farm,
LE a_field,
FarmEvent a_ev 
)
virtual

The one and only method for a crop management plan. All farm actions go through here.

Called every time something is done to the crop by the farmer in the first instance it is always called with m_ev->todo set to start, but susequently will be called whenever the farmer wants to carry out a new operation.
This method details all the management and relationships between operations necessary to grow and ALMaSS crop - in this case conventional carrots.

Reimplemented from Crop.

65 {
66  /******************** This block can be added to the top of all Crop::Do methods ***********************************************/
67  m_farm = a_farm;
68  m_field = a_field;
69  m_ev = a_ev;
70  bool done = false; // The boolean value done indicates when we are totally finished with this plan (i.e. it is set to true, m_farm, m_field).
71  bool flag = false;
72  int d1 = 0;
73  int noDates = 1;
75  int l_nextcropstartdate;
76  /**********************************************To Here *************************************************************************/
77 
78  // Depending what event has occured jump to the correct bit of code
79  switch (m_ev->m_todo)
80  {
81  case nl_cas_start:
82  {
83  NL_CAS_WINTER_PLOUGH = false;
84  NL_CAS_HERBI1 = false;
85  NL_CAS_HERBI2 = false;
86  NL_CAS_FUNGI1 = false;
87  NL_CAS_FUNGI2 = false;
89 
90  m_last_date = g_date->DayInYear(15, 11); // Should match the last flexdate below
91  //Create a 2d array of 1 plus the number of operations you use. Change only 4+1 to what you need in the line below
92  std::vector<std::vector<int>> flexdates(1 + 1, std::vector<int>(2, 0));
93  // Set up the date management stuff
94  // Start and stop dates for all events after harvest
95  flexdates[0][1] = g_date->DayInYear(1, 10); // first possible day of finishing harvest - this is in effect day before the earliest date that a following crop can use
96 
97  flexdates[1][0] = g_date->DayInYear(1, 10); // This date will be moved back as far as necessary and potentially to flexdates 1 (start op 1)
98  flexdates[1][1] = g_date->DayInYear(15, 11); // This date will be moved back as far as necessary and potentially to flexdates 1 (end op 1) - straw chopping
99 
100  // Below if this is a spring crop use 365, otherwise set this to 0, second parameter is fixed, and the third is the start up operation in the first year
101  int isSpring = 365;
102  if (StartUpCrop(isSpring, flexdates, int(nl_cas_spring_sow))) break;
103 
104  // End single block date checking code. Please see next line comment as well.
105  // Reinit d1 to first possible starting date.
106  d1 = g_date->OldDays() + g_date->DayInYear(1, 3) + isSpring;
107  // OK, let's go.
108  if (m_field->GetSoilType() != 2 && m_field->GetSoilType() != 6) // on clay soils (NL KLEI & VEEN)
109  {
110  if (m_farm->IsStockFarmer()) //Stock Farmer
111  {
113  }
114  else SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 3) + 365, nl_cas_ferti_p1, false, m_farm, m_field);
115  }
116  else {
118  }
119  break;
120  }
121  break;
122 
123  // This is the first real farm operation
125  if (!m_farm->SpringPlough(m_field, 0.0, g_date->DayInYear(31, 3) - g_date->DayInYear())) {
127  break;
128  }
129  if (m_farm->IsStockFarmer()) //Stock Farmer
130  {
132  }
133  else SimpleEvent_(g_date->Date() + 7, nl_cas_ferti_p1, false, m_farm, m_field);
134  break;
135  case nl_cas_ferti_p1:
136  if (m_ev->m_lock || m_farm->DoIt_prob(0.95))
137  {
138  if (!m_farm->FP_NPK(m_field, 0.0, g_date->DayInYear(1, 5) - g_date->DayInYear())) {
140  break;
141  }
142  }
143  d1 = g_date->Date() + 1;
144  if (d1 < g_date->OldDays() + g_date->DayInYear(1, 4)) {
145  d1 = g_date->OldDays() + g_date->DayInYear(1, 4);
146  }
148  break;
149  case nl_cas_ferti_s1:
150  if (m_ev->m_lock || m_farm->DoIt_prob(0.95))
151  {
152  if (!m_farm->FA_NPK(m_field, 0.0, g_date->DayInYear(1, 5) - g_date->DayInYear())) {
154  break;
155  }
156  }
157  d1 = g_date->Date() + 1;
158  if (d1 < g_date->OldDays() + g_date->DayInYear(1, 4)) {
159  d1 = g_date->OldDays() + g_date->DayInYear(1, 4);
160  }
162  break;
163 
165  if (!m_farm->PreseedingCultivator(m_field, 0.0, g_date->DayInYear(25, 4) - g_date->DayInYear())) {
167  break;
168  }
170  break;
171  case nl_cas_bed_forming:
172  if (!m_farm->BedForming(m_field, 0.0, g_date->DayInYear(30, 4) - g_date->DayInYear())) {
174  break;
175  }
177  break;
178  case nl_cas_spring_sow:
179  if (!m_farm->SpringSow(m_field, 0.0, g_date->DayInYear(15, 5) - g_date->DayInYear())) {
181  break;
182  }
183  // Here is a fork leading to four parallel events
184  SimpleEvent_(g_date->Date() + 3, nl_cas_herbicide1, false, m_farm, m_field); // Herbicide thread
185  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(1, 7), nl_cas_fungicide1, false, m_farm, m_field); // Fungicide thread = MAIN THREAD
186  if (m_farm->IsStockFarmer()) //Stock Farmer
187  {
188  SimpleEvent_(g_date->OldDays() + g_date->DayInYear(15, 6), nl_cas_ferti_s2, false, m_farm, m_field); // Fertilizers thread
189  }
191  break;
192  case nl_cas_ferti_p2:
193  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
194  {
195  if (!m_farm->FP_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(30, 7) - g_date->DayInYear())) {
197  break;
198  }
199  }
200  // End of thread
201  break;
202  case nl_cas_ferti_s2:
203  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
204  {
205  if (!m_farm->FA_AmmoniumSulphate(m_field, 0.0, g_date->DayInYear(30, 7) - g_date->DayInYear())) {
207  break;
208  }
209  }
210  // End of thread
211  break;
212  case nl_cas_herbicide1: // The first of the pesticide managements.
213  // Here comes the herbicide thread
214  if (m_field->GetGreenBiomass() <= 0)
215  {
216  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
217  {
218  if (!m_farm->HerbicideTreat(m_field, 0.0, g_date->DayInYear(20, 5) - g_date->DayInYear())) {
220  break;
221  }
222  NL_CAS_HERBI1 = true;
223  }
225  break;
226  }
228  break;
229  case nl_cas_herbicide2:
230  if (m_field->GetGreenBiomass() <= 0) {
232  }
233  else
234  {
235  if (m_ev->m_lock || (m_farm->DoIt_prob(1.00) && NL_CAS_HERBI1 == 1))
236  {
237  if (!m_farm->HerbicideTreat(m_field, 0.0, g_date->DayInYear(5, 6) - g_date->DayInYear())) {
239  break;
240  }
241  NL_CAS_HERBI2 = true;
242  }
244  break;
245  }
246  break;
247  case nl_cas_herbicide3:
248  if (m_ev->m_lock || (m_farm->DoIt_prob(0.75) && NL_CAS_HERBI2 == 1))
249  {
250  if (!m_farm->HerbicideTreat(m_field, 0.0, g_date->DayInYear(20, 6) - g_date->DayInYear())) {
252  break;
253  }
254  }
255  // End of thread
256  break;
257  case nl_cas_fungicide1:
258  // Here comes the fungicide thread
259  if (m_ev->m_lock || m_farm->DoIt_prob(0.80))
260  {
261  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(30, 7) - g_date->DayInYear())) {
263  break;
264  }
265  NL_CAS_FUNGI1 = true;
266  }
268  break;
269  case nl_cas_fungicide2:
270  if (m_ev->m_lock || (m_farm->DoIt_prob(1.00) && NL_CAS_FUNGI1 == 1))
271  {
272  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(30, 8) - g_date->DayInYear())) {
274  break;
275  }
276  NL_CAS_FUNGI2 = true;
277  }
279  break;
280  case nl_cas_fungicide3:
281  if (m_ev->m_lock || (m_farm->DoIt_prob(0.75) && NL_CAS_FUNGI2 == 1)) // 60% of all farmers
282  {
283  if (!m_farm->FungicideTreat(m_field, 0.0, g_date->DayInYear(30, 9) - g_date->DayInYear())) {
285  break;
286  }
287  }
289  break;
290  case nl_cas_harvest:
291  if (!m_farm->Harvest(m_field, 0.0, m_field->GetMDates(1, 1) - g_date->DayInYear())) {
293  break;
294  }
295  done = true;
296  // So we are done, and somwhere else the farmer will queue up the start event of the next crop
297  // END of MAIN THREAD
298  break;
299  default:
300  g_msg->Warn(WARN_BUG, "NLCarrotsSpring::Do(): "
301  "Unknown event type! ", "");
302  exit(1);
303  }
304  if (done) m_ev->m_forcespring = true; // Here we need to force the next crop to spring operation, so set the ev->forcespring to true
305  return done;
306 }

References Farm::BedForming(), LE::ClearManagementActionSum(), Calendar::Date(), Calendar::DayInYear(), Farm::DoIt_prob(), Farm::FA_AmmoniumSulphate(), Farm::FA_NPK(), Farm::FP_AmmoniumSulphate(), Farm::FP_NPK(), Farm::FungicideTreat(), g_date, g_msg, LE::GetGreenBiomass(), LE::GetMDates(), LE::GetSoilType(), Farm::Harvest(), Farm::HerbicideTreat(), Farm::IsStockFarmer(), Crop::m_ev, Crop::m_farm, Crop::m_field, FarmEvent::m_forcespring, Crop::m_last_date, FarmEvent::m_lock, FarmEvent::m_todo, nl_cas_bed_forming, nl_cas_ferti_p1, nl_cas_ferti_p2, nl_cas_ferti_s1, nl_cas_ferti_s2, NL_CAS_FUNGI1, NL_CAS_FUNGI2, nl_cas_fungicide1, nl_cas_fungicide2, nl_cas_fungicide3, nl_cas_harvest, NL_CAS_HERBI1, NL_CAS_HERBI2, nl_cas_herbicide1, nl_cas_herbicide2, nl_cas_herbicide3, nl_cas_preseeding_cultivator, nl_cas_spring_plough_sandy, nl_cas_spring_sow, nl_cas_start, NL_CAS_WINTER_PLOUGH, Calendar::OldDays(), Farm::PreseedingCultivator(), Crop::SimpleEvent_(), Farm::SpringPlough(), Farm::SpringSow(), Crop::StartUpCrop(), tov_NLCarrotsSpring, MapErrorMsg::Warn(), and WARN_BUG.

◆ SetUpFarmCategoryInformation()

void NLCarrotsSpring::SetUpFarmCategoryInformation ( )
inline
81  {
82  const int elements = 2 + (nl_cas_foobar - NLCARROTSSPRING_BASE);
84 
85  FarmManagementCategory catlist[elements] =
86  {
87  fmc_Others, // zero element unused but must be here
88  fmc_Others,//nl_cas_start = 1, // Compulsory, must always be 1 (one).
89  fmc_Others,//nl_cas_sleep_all_day = NLCARROTSSPRING_BASE,
90  fmc_Cultivation,//nl_cas_spring_plough_sandy,
91  fmc_Fertilizer,//nl_cas_ferti_p1,
92  fmc_Fertilizer,//nl_cas_ferti_s1,
93  fmc_Cultivation,//nl_cas_preseeding_cultivator,
94  fmc_Others,//nl_cas_bed_forming,
95  fmc_Others,//nl_cas_spring_sow,
96  fmc_Fertilizer,//nl_cas_ferti_p2,
97  fmc_Fertilizer,//nl_cas_ferti_s2,
98  fmc_Herbicide,//nl_cas_herbicide1,
99  fmc_Herbicide,//nl_cas_herbicide2,
100  fmc_Herbicide,//nl_cas_herbicide3,
101  fmc_Fungicide,//nl_cas_fungicide1,
102  fmc_Fungicide,//nl_cas_fungicide2,
103  fmc_Fungicide,//nl_cas_fungicide3,
104  fmc_Harvest//nl_cas_harvest,
105  };
106  // Iterate over the catlist elements and copy them to vector
107  copy(begin(catlist), end(catlist), back_inserter(m_ManagementCategories));
108 
109  }

References fmc_Cultivation, fmc_Fertilizer, fmc_Fungicide, fmc_Harvest, fmc_Herbicide, fmc_Others, Crop::m_base_elements_no, Crop::m_ManagementCategories, nl_cas_foobar, and NLCARROTSSPRING_BASE.

Referenced by NLCarrotsSpring().


The documentation for this class was generated from the following files:
LE::GetMDates
int GetMDates(int a, int b)
Definition: Elements.h:405
FarmEvent::m_forcespring
bool m_forcespring
Definition: Farm.h:392
nl_cas_herbicide1
Definition: NLCarrotsSpring.h:50
Farm::PreseedingCultivator
virtual bool PreseedingCultivator(LE *a_field, double a_user, int a_days)
Carry out preseeding cultivation on a_field (tilling set including cultivator and string roller to co...
Definition: FarmFuncs.cpp:312
Farm::SpringPlough
virtual bool SpringPlough(LE *a_field, double a_user, int a_days)
Carry out a ploughing event in the spring on a_field.
Definition: FarmFuncs.cpp:421
Farm::HerbicideTreat
virtual bool HerbicideTreat(LE *a_field, double a_user, int a_days)
Apply herbicide to a_field.
Definition: FarmFuncs.cpp:2025
Farm::IsStockFarmer
bool IsStockFarmer(void)
Definition: Farm.h:961
nl_cas_harvest
Definition: NLCarrotsSpring.h:56
Farm::Harvest
virtual bool Harvest(LE *a_field, double a_user, int a_days)
Carry out a harvest on a_field.
Definition: FarmFuncs.cpp:1364
FarmEvent::m_lock
bool m_lock
Definition: Farm.h:384
LE::ClearManagementActionSum
void ClearManagementActionSum()
clears the management action counters
Definition: Elements.h:247
Farm::FP_NPK
virtual bool FP_NPK(LE *a_field, double a_user, int a_days)
Apply NPK fertilizer, on a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:645
nl_cas_ferti_s2
Definition: NLCarrotsSpring.h:49
nl_cas_spring_sow
Definition: NLCarrotsSpring.h:47
Farm::DoIt_prob
bool DoIt_prob(double a_probability)
Return chance out of 0 to 1.
Definition: Farm.cpp:864
g_date
class Calendar * g_date
Definition: Calendar.cpp:37
NL_CAS_FUNGI2
#define NL_CAS_FUNGI2
Definition: NLCarrotsSpring.h:32
NL_CAS_HERBI2
#define NL_CAS_HERBI2
Definition: NLCarrotsSpring.h:30
Farm::BedForming
virtual bool BedForming(LE *a_field, double a_user, int a_days)
Do bed forming up on a_field, probably of carrots.
Definition: FarmFuncs.cpp:1316
fmc_Herbicide
Definition: LandscapeFarmingEnums.h:1006
Farm::SpringSow
virtual bool SpringSow(LE *a_field, double a_user, int a_days, double a_seed_coating_amount=-1, PlantProtectionProducts a_ppp=ppp_foobar)
Carry out a sowing event in the spring on a_field.
Definition: FarmFuncs.cpp:501
Crop::m_base_elements_no
int m_base_elements_no
Definition: Farm.h:505
Crop::m_first_date
int m_first_date
Definition: Farm.h:501
Farm::FA_NPK
virtual bool FA_NPK(LE *a_field, double a_user, int a_days)
Apply NPK fertilizer to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:982
Farm::FungicideTreat
virtual bool FungicideTreat(LE *a_field, double a_user, int a_days)
Apply fungicide to a_field.
Definition: FarmFuncs.cpp:2101
nl_cas_ferti_p1
Definition: NLCarrotsSpring.h:43
nl_cas_herbicide3
Definition: NLCarrotsSpring.h:52
nl_cas_foobar
Definition: NLCarrotsSpring.h:57
NLCARROTSSPRING_BASE
#define NLCARROTSSPRING_BASE
Definition: NLCarrotsSpring.h:24
nl_cas_ferti_s1
Definition: NLCarrotsSpring.h:44
fmc_Fertilizer
Definition: LandscapeFarmingEnums.h:1004
nl_cas_preseeding_cultivator
Definition: NLCarrotsSpring.h:45
NLCarrotsSpring::SetUpFarmCategoryInformation
void SetUpFarmCategoryInformation()
Definition: NLCarrotsSpring.h:81
Calendar::Date
long Date(void)
Definition: Calendar.h:57
Farm::FP_AmmoniumSulphate
virtual bool FP_AmmoniumSulphate(LE *a_field, double a_user, int a_days)
Apply Ammonium Sulphate to a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:882
fmc_Cultivation
Definition: LandscapeFarmingEnums.h:1008
LE::GetSoilType
int GetSoilType()
Definition: Elements.h:302
fmc_Others
Definition: LandscapeFarmingEnums.h:1003
Calendar::OldDays
long OldDays(void)
Definition: Calendar.h:60
MapErrorMsg::Warn
void Warn(MapErrorState a_level, std::string a_msg1, std::string a_msg2)
Definition: MapErrorMsg.cpp:69
Crop::StartUpCrop
bool StartUpCrop(int a_spring, std::vector< std::vector< int >> a_flexdates, int a_todo)
Holds the translation between the farm operation enum for each cropand the farm management category a...
Definition: Farm.cpp:652
nl_cas_ferti_p2
Definition: NLCarrotsSpring.h:48
nl_cas_fungicide1
Definition: NLCarrotsSpring.h:53
Crop::m_farm
Farm * m_farm
Definition: Farm.h:498
Crop::m_field
LE * m_field
Definition: Farm.h:499
Crop::m_ManagementCategories
vector< FarmManagementCategory > m_ManagementCategories
Holds the translation between the farm operation enum for each crop and the farm management category ...
Definition: Farm.h:530
FarmEvent::m_todo
int m_todo
Definition: Farm.h:388
LE::GetGreenBiomass
virtual double GetGreenBiomass(void)
Definition: Elements.h:160
nl_cas_fungicide2
Definition: NLCarrotsSpring.h:54
nl_cas_start
Definition: NLCarrotsSpring.h:40
Crop::m_last_date
int m_last_date
Definition: Farm.h:503
NL_CAS_FUNGI1
#define NL_CAS_FUNGI1
Definition: NLCarrotsSpring.h:31
g_msg
MapErrorMsg * g_msg
Definition: MapErrorMsg.cpp:41
nl_cas_spring_plough_sandy
Definition: NLCarrotsSpring.h:42
Farm::FA_AmmoniumSulphate
virtual bool FA_AmmoniumSulphate(LE *a_field, double a_user, int a_days)
Apply ammonium sulphate to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:1081
TTypesOfVegetation
TTypesOfVegetation
Values that represent the types of vegetation that are represented in ALMaSS.
Definition: LandscapeFarmingEnums.h:192
fmc_Harvest
Definition: LandscapeFarmingEnums.h:1012
nl_cas_bed_forming
Definition: NLCarrotsSpring.h:46
nl_cas_fungicide3
Definition: NLCarrotsSpring.h:55
nl_cas_herbicide2
Definition: NLCarrotsSpring.h:51
Calendar::DayInYear
int DayInYear(void)
Definition: Calendar.h:58
NL_CAS_HERBI1
#define NL_CAS_HERBI1
Definition: NLCarrotsSpring.h:29
Crop::Crop
Crop(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
Definition: Farm.cpp:733
NL_CAS_WINTER_PLOUGH
#define NL_CAS_WINTER_PLOUGH
A flag used to indicate autumn ploughing status.
Definition: NLCarrotsSpring.h:28
Crop::m_ev
FarmEvent * m_ev
Definition: Farm.h:500
WARN_BUG
Definition: MapErrorMsg.h:34
fmc_Fungicide
Definition: LandscapeFarmingEnums.h:1007
tov_NLCarrotsSpring
Definition: LandscapeFarmingEnums.h:263
FarmManagementCategory
FarmManagementCategory
Definition: LandscapeFarmingEnums.h:1001
Crop::SimpleEvent_
void SimpleEvent_(long a_date, int a_todo, bool a_lock, Farm *a_farm, LE *a_field)
Adds an event to this crop management without relying on member variables.
Definition: Farm.cpp:751