Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:38

0001 #include "PhysicsTools/MVAComputer/interface/Calibration.h"
0002 #include "PhysicsTools/MVAComputer/interface/MVAComputer.h"
0003 #include "PhysicsTools/MVAComputer/interface/Variable.h"
0004 #include "PhysicsTools/MVAComputer/interface/BitSet.h"
0005 #include "PhysicsTools/MVAComputer/interface/AtomicId.h"
0006 #include "PhysicsTools/MVAComputer/interface/TreeReader.h"
0007 
0008 #ifdef __GCCXML__
0009 namespace PhysicsTools_MVAComputer {  // anonymous
0010   struct dictionary {
0011     std::vector<PhysicsTools::Variable::Value> vv;
0012   };
0013   static void dummy(PhysicsTools::MVAComputer *mva) {
0014     PhysicsTools::Variable::ValueList v;
0015 
0016     mva->eval(v);
0017     mva->eval(v.values());
0018     mva->eval(v.begin(), v.end());
0019     mva->eval(v.data(), v.data());
0020 
0021     mva->deriv(v);
0022     mva->deriv(v.values());
0023     mva->deriv(v.begin(), v.end());
0024     mva->deriv(v.data(), v.data());
0025   }
0026 
0027 }  // namespace PhysicsTools_MVAComputer
0028 
0029 #endif