Landis.Extension.BaseHarvest.Prescription.Prescription C# (CSharp) Method

Prescription() public method

public Prescription ( string name, IStandRankingMethod rankingMethod, ISiteSelector siteSelector, ICohortSelector cohortSelector, Landis.Library.Succession.Planting speciesToPlant, int minTimeSinceDamage, bool preventEstablishment ) : Edu.Wisc.Forest.Flel.Util
name string
rankingMethod IStandRankingMethod
siteSelector ISiteSelector
cohortSelector ICohortSelector
speciesToPlant Landis.Library.Succession.Planting
minTimeSinceDamage int
preventEstablishment bool
return Edu.Wisc.Forest.Flel.Util
        public Prescription(string               name,
                            IStandRankingMethod  rankingMethod,
                            ISiteSelector        siteSelector,
                            ICohortSelector      cohortSelector,
                            Planting.SpeciesList speciesToPlant,
                            int                  minTimeSinceDamage,
                            bool                 preventEstablishment)
        {
            this.number = nextNumber;
            nextNumber++;

            this.name = name;
            this.rankingMethod = rankingMethod;
            this.siteSelector = siteSelector;
            this.cohortSelector = cohortSelector;
            this.speciesToPlant = speciesToPlant;
            this.minTimeSinceDamage = minTimeSinceDamage;
            this.preventEstablishment = preventEstablishment;

            this.landUseAfterHarvest = landUseMostRecentlyChecked;
        }

Same methods

Prescription::Prescription ( string name, IStandRankingMethod rankingMethod, ISiteSelector siteSelector, ICohortSelector cohortSelector, Landis.Library.Succession.Planting speciesToPlant, int minTimeSinceDamage, bool preventEstablishment ) : Landis.Library.AgeOnlyCohorts