ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitCommon/DataFormats/interface/Vect3C.h
Revision: 1.2
Committed: Mon Mar 16 20:29:11 2009 UTC (16 years, 1 month ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008pre2
Changes since 1.1: +4 -4 lines
Log Message:
Adjustment

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.2 // $Id: Vect3C.h,v 1.1 2009/03/08 12:00:54 loizides Exp $
3 loizides 1.1 //
4     // Vect3C
5     //
6     // Implementation of our own ThreeVectorC32.
7     //
8     // Authors: C.Loizides
9     //--------------------------------------------------------------------------------------------------
10    
11     #ifndef MITCOMMON_DATAFORMATS_VECT3C_H
12     #define MITCOMMON_DATAFORMATS_VECT3C_H
13    
14     #include "MitCommon/DataFormats/interface/Types.h"
15    
16     namespace mithep
17     {
18     class Vect3C
19     {
20     public:
21     Vect3C() :
22     fRho(0), fEta(0), fPhi(0) {}
23     Vect3C(Double_t rho, Double_t eta, Double_t phi) :
24     fRho(rho), fEta(eta), fPhi(phi) {}
25     Vect3C(const ThreeVector pos) :
26     fRho(pos.Rho()), fEta(pos.Eta()), fPhi(pos.Phi()) {}
27     Vect3C(const ThreeVectorC pos) :
28     fRho(pos.Rho()), fEta(pos.Eta()), fPhi(pos.Phi()) {}
29    
30     Double_t Eta() const { return fEta; }
31     Double_t Phi() const { return fPhi; }
32     Double_t Rho() const { return fRho; }
33     const ThreeVectorC V() const { return ThreeVectorC(fRho,fEta,fPhi); }
34     void SetXYZ(Double_t x, Double_t y, Double_t z);
35    
36     protected:
37 loizides 1.2 Double32_t fRho; //[0,0,12]rho-component
38     Double32_t fEta; //[0,0,10]eta-component
39     Double32_t fPhi; //[0,0,10]phi-component
40 loizides 1.1
41     ClassDef(Vect3C, 1)
42     };
43     }
44    
45     //--------------------------------------------------------------------------------------------------
46     inline void mithep::Vect3C::SetXYZ(Double_t x, Double_t y, Double_t z)
47     {
48     // Set four vector.
49    
50     ThreeVector tmp(x, y, z);
51     fRho=tmp.Rho();
52     fEta=tmp.Eta();
53     fPhi=tmp.Phi();
54     }
55     #endif