Welcome to root for DIAL 1.30 The following global variables have been defined: parser - XML parser ar - application repository (AR) asc - application selection catalog (ASC) tr - task repository (TR) tsc - task selection catalog (TSC) dr - dataset repository (DR) dsc - dataset selection catalog (DSC) dfc - dataset file catalog (DFC) drc - dataset replica catalog (DRC) jr - job repository (JR) csc - credential selection catalog (CSC) aid - application ID tid - task ID did - dataset ID jid - job ID papp - pointer to the current application ptsk - pointer to the current task pdst - pointer to the current dataset msch - scheduler (analysis service client) Some useful commands: print(xyz) // print the object named xyz pprint(pxyz) // print the object at address pxyz print(dsc.schema()) // Display the schema for the DSC print(dsc.query("level='TOP'")) // Display top-level datasets in DSC print(dsc.attributes("mydst") // Display attributes of a named dataset did = dsc.id("mydst"); // Fetch ID for the dataset named mydst pdst = dr.extract(did); // Extract dataset pprint(pdst); // Display dataset intrinsic properties print(msch) // Display the scheduler status print(msch.job(jid)) // Print status of the current job .x demos/demohelp.C // Instructions for running demos define_job_help() // Instructions for defining a job submit() // Submit job defined by papp, ptsk and pdst get_result() // Show job status and retrieve the result get_result_text(idst=0, itxt=0); // Fetch and show text from result TBrowser br // Open ROOT browser to examine result files open_job_archive(jid) // Fetch log files for a job show_catalogs() // List the catalogs .sh check_proxy // Check grid proxy and renew if needed help() // Show this message Questions or comments to dladams@bnl.gov