FourVector.h
Go to the documentation of this file.
1 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2 
3 #ifndef DD4POD_FourVector_H
4 #define DD4POD_FourVector_H
5 
6 #include <ostream>
7 
8 namespace dd4pod {
9 
10 
11 class FourVector {
12 public:
13  double x;
14  double y;
15  double z;
16  double t;
17 
18 
19 };
20 
21 inline std::ostream& operator<<(std::ostream& o, const dd4pod::FourVector& value) {
22  o << value.x << " ";
23  o << value.y << " ";
24  o << value.z << " ";
25  o << value.t << " ";
26 
27  return o;
28 }
29 
30 } // namespace dd4pod
31 
32 
33 
34 #endif
parameter value(const doc_string &label, Targets &&... tgts)
makes required, blocking, repeatable value parameter; matches any non-empty string
Definition: clipp.h:2094
std::ostream & operator<<(std::ostream &o, const ConstCalorimeterHit &value)