petsc-3.7.1 2016-05-15
Report Typos and Errors

PetscBagRegisterString

add a string value to the bag

Synopsis

#include "petscbag.h"   
PetscErrorCode PetscBagRegisterString(PetscBag bag,void *addr,PetscInt msize,const char* mdefault,const char* name,const char* help)
Logically Collective on PetscBag Many br

Input Parameter

bag - the bag of values Many br
addr - location of start of string in struct Many br
msize - length of the string space in the struct Many br
mdefault - the initial value Many br
name - name of the string Many br
help - longer string with more information about the value Many br

Many br

Note: The struct should have the field char mystring[msize]; not char *mystring Many br

See Also

PetscBag, PetscBagSetName(), PetscBagView(), PetscBagLoad(), PetscBagGetData()
PetscBagRegisterInt(), PetscBagRegisterBool(), PetscBagRegisterScalar() Many brPetscBagSetFromOptions(),PetscBagCreate(), PetscBagGetName(), PetscBagRegisterEnum() Many br

Level:beginner
Location:
src/sys/classes/bag/bag.c
Index of all Sys routines
Table of Contents for all manual pages
Index of all manual pages

Examples

src/sys/examples/tutorials/ex5.c.html
src/sys/examples/tutorials/ex5f90.F90.html
src/dm/examples/tutorials/ex7.c.html