60         result = 
dynamic_cast<T&
>(object).Fit(tuple.first, tuple.second.c_str(), 
"same");
 
   62       catch(
const std::exception&) {}
 
   92 int main(
int argc, 
char **argv)
 
  112     JParser<> zap(
"General purpose fit program using ROOT.");
 
  114     zap[
'f'] = 
make_field(inputFile,   
"<input file>:<object name>");
 
  116     zap[
'F'] = 
make_field(formula,     
"fit formula, e.g: \"[0]+[1]*x\"");
 
  117     zap[
'@'] = 
make_field(startValues, 
"start values, e.g: \"p0 = GetMaximum;\"");
 
  118     zap[
'='] = 
make_field(fixedValues, 
"fixed values, e.g: \"p0 = GetMaximum;\"");
 
  121     zap[
'O'] = 
make_field(option,      
"Fit option")                         = 
"";
 
  128   catch(
const exception &error) {
 
  129     FATAL(error.what() << endl);
 
  133   if (option.find(
'O') == string::npos) { option += 
"O"; }
 
  135   if (
debug ==  0 && option.find(
'Q') == string::npos) { option += 
"Q"; }
 
  141   TF2* fcn = 
new TF2(
"user", formula.c_str());
 
  145   if (fcn->IsZombie()) {
 
  146     FATAL(
"Function: " << formula << 
" is zombie." << endl);
 
  151     DEBUG(
"Input: " << *input << endl);
 
  156       ERROR(
"File: " << input->getFullFilename() << 
" not opened." << endl);
 
  160     const TRegexp regexp(input->getObjectName());
 
  162     TIter iter(dir->GetListOfKeys());
 
  164     for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
 
  166       const TString tag(key->GetName());
 
  168       DEBUG(
"Key: " << tag << 
" match = " << tag.Index(regexp) << 
" (-1 /= OK)" << endl);
 
  172       if (tag.Index(regexp) != -1) {
 
  174         TObject* 
object = key->ReadObj();
 
  190           FATAL(error << endl);
 
  193         DEBUG(
"Start values " << object->GetName() << endl);
 
  195         for (
int j = 0; j != fcn->GetNpar(); ++j) {
 
  196           DEBUG(left << setw(12) << fcn->GetParName  (j) << 
' ' << 
 
  197                 SCIENTIFIC(12,5) << fcn->GetParameter(j) << endl);
 
  208         if (fit.result != -1) {
 
  212           NOTICE(
"Fit values  " << object->GetName() << endl);
 
  213           NOTICE(
"Fit formula " << formula           << endl);
 
  215           for (
int j = 0; j != fcn->GetNpar(); ++j) {
 
  216             NOTICE(left << setw(12) << fcn->GetParName  (j) << 
' '     << 
 
  217                    SCIENTIFIC(12,5) << fcn->GetParameter(j) << 
" +/- " << 
 
  218                    SCIENTIFIC(12,5) << fcn->GetParError (j) << endl);
 
  223           WARNING(
"Object: not compatible with ROOT Fit." << endl);
 
Utility class to parse command line options. 
 
double getValue(const JScale_t scale)
Get numerical value corresponding to scale. 
 
int getParameter(const std::string &text)
Get parameter number from text string. 
 
Empty structure for specification of parser element that is initialised (i.e. 
 
Auxiliary class for a type holder. 
 
Data structure for track fit results. 
 
I/O formatting auxiliaries. 
 
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object 
 
General purpose messaging. 
 
JObject_t & for_each(JObject_t &object, JType< JTypeList< JHead_t, JTail_t > > typelist)
For each data type method. 
 
Utility class to parse command line options. 
 
Wrapper class around string. 
 
Data structure based on type list. 
 
Exception for parsing value. 
 
TDirectory * getDirectory(const JRootObjectID &id)
Get TDirectory pointer. 
 
Auxiliary data structure for floating point format specification. 
 
#define DEBUG(A)
Message macros. 
 
int main(int argc, char *argv[])