Subversion Repositories public iLand

Rev

Rev 1033 | Rev 1104 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1033 Rev 1082
Line 48... Line 48...
48
48
49
private:
49
private:
50
    void calculateBarkTemperature(const ResourceUnit *ru);
50
    void calculateBarkTemperature(const ResourceUnit *ru);
51
    struct BBGeneration {
51
    struct BBGeneration {
52
        BBGeneration(): start_day(-1), gen(0), is_sister_brood(false), value(0.) {}
52
        BBGeneration(): start_day(-1), gen(0), is_sister_brood(false), value(0.) {}
53
        BBGeneration(int start, bool is_filial, int generation) { start_day=start; is_sister_brood=is_filial; value=0.; gen=generation; }
-
 
-
 
53
        BBGeneration(int start, bool is_sister, int generation) { start_day=start; is_sister_brood=is_sister; value=0.; gen=generation; }
54
        int start_day;
54
        int start_day;
55
        int gen;
55
        int gen;
56
        bool is_sister_brood;
56
        bool is_sister_brood;
57
        double value;
57
        double value;
58
    };
58
    };