Create a Schema from a sequence of Fields. For pickle support.
Parameters
----------
fields : `tuple` ['lsst.afw.table.Field']
The fields to construct the new Schema from.
Returns
-------
schema : `lsst.afw.table.Schema`
The constructed Schema.
Definition at line 213 of file schemaContinued.py.
214 """Create a Schema from a sequence of Fields. For pickle support. 218 fields : `tuple` ['lsst.afw.table.Field'] 219 The fields to construct the new Schema from. 223 schema : `lsst.afw.table.Schema` 224 The constructed Schema. 228 schema.addField(field)
230 def makeSchemaFromFields(fields)