NCFS-Pack
A generic (astro)particle physics analysis framework
 
Loading...
Searching...
No Matches
NcPositionObj.h
Go to the documentation of this file.
1#ifndef NcPositionObj_h
2#define NcPositionObj_h
3// Copyright(c) 1999 NCFS/IIHE, All Rights Reserved.
4// See cxx source for full Copyright notice.
5
6#include "TObject.h"
7
8#include "NcPosition.h"
9
11
12class NcPositionObj : public TObject,public NcPosition
13{
14 public:
15 NcPositionObj(); // Default constructor
16 NcPositionObj(NcPosition& p); // Constructor
17 virtual ~NcPositionObj(); // Destructor
18 NcPositionObj(const NcPositionObj& p); // Copy constructor
19
20 ClassDef(NcPositionObj,1) // Handling of positions in various reference frames.
21};
22#endif
virtual ~NcPositionObj()