Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:44

0001 #ifndef RKSmallVector_H
0002 #define RKSmallVector_H
0003 
0004 #include "FWCore/Utilities/interface/Visibility.h"
0005 #include "DataFormats/GeometryVector/interface/PreciseFloatType.h"
0006 
0007 #define SMATRIX_USE_CONSTEXPR
0008 #include <Math/SVector.h>
0009 
0010 #include <iostream>
0011 
0012 template <typename T, int N>
0013 using RKSmallVector = ROOT::Math::SVector<T, N>;
0014 
0015 #endif