public CRYST1_Record(string columnFormatLine)
     : base(columnFormatLine)
 {
     CRYST1         = new CRYST1_Field(columnFormatLine);
     a              = new a_Field(columnFormatLine);
     b              = new b_Field(columnFormatLine);
     c              = new c_Field(columnFormatLine);
     alpha          = new alpha_Field(columnFormatLine);
     beta           = new beta_Field(columnFormatLine);
     gamma          = new gamma_Field(columnFormatLine);
     sGroup         = new sGroup_Field(columnFormatLine);
     z              = new z_Field(columnFormatLine);
     additionalData = new additionalData_Field(columnFormatLine);
 }
 public HETATM_Record(string columnFormatLine)
     : base(columnFormatLine)
 {
     HETATM         = new HETATM_Field(columnFormatLine);
     serial         = new serial_Field(columnFormatLine);
     name           = new name_Field(columnFormatLine);
     altLoc         = new altLoc_Field(columnFormatLine);
     resName        = new resName_Field(columnFormatLine);
     chainID        = new chainID_Field(columnFormatLine);
     resSeq         = new resSeq_Field(columnFormatLine);
     iCode          = new iCode_Field(columnFormatLine);
     x              = new x_Field(columnFormatLine);
     y              = new y_Field(columnFormatLine);
     z              = new z_Field(columnFormatLine);
     occupancy      = new occupancy_Field(columnFormatLine);
     tempFactor     = new tempFactor_Field(columnFormatLine);
     element        = new element_Field(columnFormatLine);
     charge         = new charge_Field(columnFormatLine);
     additionalData = new additionalData_Field(columnFormatLine);
 }