Auxiliary data structure to define ROOT minimizer.  
 More...
#include <JMinimizer.hh>
Auxiliary data structure to define ROOT minimizer. 
Definition at line 14 of file JMinimizer.hh.
 
◆ JMinimizer()
  
  
      
        
          | JMinimizer::JMinimizer  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
Default constructor. 
Definition at line 18 of file JMinimizer.hh.
   18               :
   22  {
   24  }
void configure()
Configure ROOT minimizer.
 
 
 
 
◆ configure()
  
  
      
        
          | void JMinimizer::configure  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
Configure ROOT minimizer. 
Definition at line 30 of file JMinimizer.hh.
   31  {
   32    ROOT::Math::MinimizerOptions::SetDefaultMinimizer(
type.c_str(), 
algorithm.c_str());
 
   33    ROOT::Math::MinimizerOptions::SetDefaultPrintLevel(
debug);
 
   34  }
 
 
 
◆ operator>>
  
  
      
        
          | std::istream & operator>>  | 
          ( | 
          std::istream & |           in,  | 
         
        
           | 
           | 
          JMinimizer & |           object ) | 
         
       
   | 
  
friend   | 
  
 
Stream input of ROOT minimzer. 
- Parameters
 - 
  
    | in | input stream  | 
    | object | ROOT minimzer  | 
  
   
- Returns
 - input stream 
 
Definition at line 44 of file JMinimizer.hh.
   45  {
   47 
   48      in >> object.debug;
   49 
   50      in.clear();
   51 
   52      object.configure();
   53    }
   54 
   55    return in;
   56  }
 
 
 
◆ operator<<
  
  
      
        
          | std::ostream & operator<<  | 
          ( | 
          std::ostream & |           out,  | 
         
        
           | 
           | 
          const JMinimizer & |           object ) | 
         
       
   | 
  
friend   | 
  
 
Stream output of ROOT minimzer. 
- Parameters
 - 
  
    | out | output stream  | 
    | object | ROOT minimzer  | 
  
   
- Returns
 - output stream 
 
Definition at line 66 of file JMinimizer.hh.
   67  {
   68    return out << object.type << ' ' << object.algorithm;
   69  }
 
 
 
◆ type
      
        
          | std::string JMinimizer::type | 
        
      
 
 
◆ algorithm
      
        
          | std::string JMinimizer::algorithm | 
        
      
 
 
◆ debug
The documentation for this struct was generated from the following file: