1
0
mirror of synced 2024-06-14 00:20:06 +02:00
modern-cmake/examples/root-example/MyExample.cxx
Henry Fredrick Schreiner 2d7cb87893 Adding ROOT, moving to term
2018-03-28 20:50:38 +02:00

8 lines
104 B
C++

#include <TLorentzVector.h>
int main() {
TLorentzVector v(1,2,3,4);
v.Print();
return 0;
}