Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:27

0001 #include "TTreeValidation.h"
0002 
0003 namespace mkfit {
0004 
0005   Validation* Validation::make_validation(const std::string& fileName, const TrackerInfo* trk_info) {
0006 #ifndef NO_ROOT
0007     if (Config::sim_val_for_cmssw || Config::sim_val || Config::fit_val || Config::cmssw_val) {
0008       return new TTreeValidation(fileName, trk_info);
0009     }
0010 #endif
0011     return new Validation();
0012   }
0013 
0014   Validation::Validation() {}
0015 
0016 }  // end namespace mkfit