mirror of
1
0
Fork 0
modern-cmake/examples/root-simple-3.11/SimpleExample.cxx

8 lines
104 B
C++
Raw Normal View History

2018-03-28 20:50:38 +02:00
#include <TLorentzVector.h>
int main() {
TLorentzVector v(1,2,3,4);
v.Print();
return 0;
}