| 
 
      Display the contents of the CALDB structure
     
calPrintInfo( Caldb_Type cal ) 
       
	This function prints the contents of the CALDB structure
	to the screen (stdout).
	The calSetXXX() and calGetXXX() routines can be used to
        access the individual fields of the structure.
       
	  
  chips> require("caldb")
  chips> cal = calCreateInfo
  chips> calPrintInfo( cal )
  Telescope:      -
  Instrument:     -
  Detector:       -
  Filter:         -
  Start-Date:     now
  Start-Time:     00:00:00
  Expression:     -
  Data: 
	  
  chips> cal = calCreateInfo
  chips> calSetTelescope( cal, "chandra" )
  chips> calSetInstrument( cal, "ACIS" )
  chips> calSetDetector( cal, "ACIS-I" )
  chips> calPrintInfo( cal )
  Telescope:      chandra
  Instrument:     ACIS
  Detector:       ACIS-I
  Filter:         -
  Start-Date:     now
  Start-Time:     00:00:00
  Expression:     -
  Data: 
caldb
calcreateinfo,
calfindfile,
calgetdata,
calgetdate,
calgetdetector,
calgeterror,
calgetfilter,
calgetinstrument,
calgetquery,
calgettelescope,
calgettime,
calprintinfo,
calsetdata,
calsetdate,
calsetdetector,
calsetexpression,
calsetfilter,
calsetinstrument,
calsettelescope,
calsettime
modules
caldb
 |