Grassroots Infrastructure
The Grassroots Infrastructure is a suite of computing tools to help users and developers use scientific data infrastructure that can easily be interconnected.
design.h
Go to the documentation of this file.
1 /*
2  * design.h
3  *
4  * Created on: 6 Jul 2019
5  * Author: billy
6  */
7 
8 #ifndef SERVICES_FIELD_TRIALS_INCLUDE_DESIGN_H_
9 #define SERVICES_FIELD_TRIALS_INCLUDE_DESIGN_H_
10 
11 
12 typedef struct BlockingFactors
13 {
14  char *bf_block_s;
15 
17 
19 
20  uint32 bf_row;
21 
22  uint32 bf_column;
23 
25 
26 
27 typedef struct TreatmentFactors
28 {
30 
32 
34 
36 
37 
38 
39 typedef struct TrialDesign
40 {
42 
44 
45 } TrialDesign;
46 
47 
48 #endif /* SERVICES_FIELD_TRIALS_INCLUDE_DESIGN_H_ */
BlockingFactors::bf_block_s
char * bf_block_s
Definition: design.h:14
BlockingFactors::bf_row
uint32 bf_row
Definition: design.h:20
BlockingFactors::bf_column
uint32 bf_column
Definition: design.h:22
TrialDesign::td_blocking_factors_p
BlockingFactors * td_blocking_factors_p
Definition: design.h:41
TreatmentFactors
Definition: design.h:27
TrialDesign
Definition: design.h:39
BlockingFactors::bf_whole_plot_s
char * bf_whole_plot_s
Definition: design.h:16
TreatmentFactors::tf_nitrogen_exposure_s
char * tf_nitrogen_exposure_s
Definition: design.h:29
BlockingFactors
Definition: design.h:12
TreatmentFactors::tf_spatial_control_s
char * tf_spatial_control_s
Definition: design.h:33
BlockingFactors::bf_sub_plot_s
char * bf_sub_plot_s
Definition: design.h:18
TreatmentFactors::tf_accession_s
char * tf_accession_s
Definition: design.h:31
TrialDesign::td_treatment_factors_p
TreatmentFactors * td_treatment_factors_p
Definition: design.h:43