BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtOrthogVector.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of the EvtGen package developed jointly
5// for the BaBar and CLEO collaborations. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/COPYRIGHT
9// Copyright (C) 2000 Caltech, LLNL
10//
11// Module: EvtGen/EvtOrthogVector.hh
12//
13// Description:
14//
15// Modification history:
16//
17// Lange August 11, 2000 Created
18//
19//------------------------------------------------------------------------
20
21#ifndef EVTORTHOGVECTOR_HH
22#define EVTORTHOGVECTOR_HH
23
24#include <vector>
25
27
28public:
29 EvtOrthogVector( int n, std::vector<double>* vectors );
30
32
33 std::vector<double> getOrthogVector() { return _orthogVector; }
34
35private:
36 int _dimen;
37 std::vector<int> _holder;
38 void findOrthog( int dim, std::vector<int> invect, std::vector<double>* vectors );
39
40 std::vector<double> _orthogVector;
41
42 int findEvenOddSwaps();
43};
44
45#endif
const Int_t n
EvtOrthogVector(int n, std::vector< double > *vectors)
std::vector< double > getOrthogVector()