SImple ROOT Data Card Code
Status: Alpha
Brought to you by:
pzuccon
File | Date | Author | Commit |
---|---|---|---|
doc | 2009-04-26 | pzuccon | [r1] First Import |
example | 2009-04-26 | pzuccon | [r1] First Import |
src | 2009-04-26 | pzuccon | [r1] First Import |
Makefile | 2009-04-26 | pzuccon | [r2] fix to makefile |
README | 2009-05-07 | pzuccon | [r3] add readme |
Simple ROOT datacard v0.1 Paolo Zuccon May 2009 This is a simple README if you give the command: make doc A directory will be created with html and latex docs of the project. The purpose of the project is to provide a simple way to implement a datacard system for a project. The chosen format is the standard .ini format. Exploiting the REFLEX feature of the ROOT framework (http:://root.cern.ch) to add a new set of parameters to your program is very easy. You just have to create a simple class deriving from the abstract dcard class and register it to the SRDcard object. Then the class name will be recognized as .ini file section and the class data members names will be recognized as valid entries. The directory example hold a simple implementation. The .ini file parser has been taken and modified from the project iniParser -- version 3.0b (beta) by N.Devillard who is gratefully acknowledged.