]> git.uio.no Git - u/mrichter/AliRoot.git/blob - UNICOR/AliDPair.cxx
Updates for CMake
[u/mrichter/AliRoot.git] / UNICOR / AliDPair.cxx
1 // Author: Dariusz Miskowiec <mailto:d.miskowiec@gsi.de> 2002
2
3 //=============================================================================
4 // particle (track) pair
5 // Allows to calculate the kinematic pair variables typically used in 
6 // two-particle correlation analyses. 
7 //=============================================================================
8
9 #include "AliDPair.h"
10
11 ClassImp(AliDPair)
12
13 //=============================================================================
14 AliDPair::AliDPair() : p0(), p1(), p(), q(), beta(), betat(), betaz(), ubeta(), 
15                  ubetat(), ubetaz(), CMp(), CMq(), buf() 
16 {
17   // constructor
18
19   printf("AliDPair object created\n");
20 }
21 //=============================================================================