BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtAmpSubIndex.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) 2002 Caltech
10//
11// Module: EvtAmpSubIndex.hh
12//
13// Description:This class keeps track of indices on amplitude objects.
14// Used for a subset of indices in an EvtAmpIndex object.
15//
16// Modification history:
17//
18// Ryd Nov 22, 2002 Module created
19//
20//------------------------------------------------------------------------
21
22#ifndef EVTAMPSUBINDEX_HH
23#define EVTAMPSUBINDEX_HH
24
25#include <vector>
26class EvtAmpIndex;
27
29
30public:
31 EvtAmpSubIndex( EvtAmpIndex* ind, std::vector<int> sub );
32 virtual ~EvtAmpSubIndex() {}
33
34 int index();
35
36private:
37 EvtAmpIndex* _ind;
38 std::vector<int> _sub;
39 int _size;
40 std::vector<int> _nstate;
41};
42
43#endif
EvtAmpSubIndex(EvtAmpIndex *ind, std::vector< int > sub)
virtual ~EvtAmpSubIndex()