1
0
mirror of synced 2024-06-04 11:48:04 +02:00
modern-cmake/examples/root-simple/SimpleExample.cxx
Henry Fredrick Schreiner 8861642e5c Adding nice examples
2018-03-29 13:26:47 +02:00

8 lines
104 B
C++

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