Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SubjetIndices.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file SubjetIndices.h
1 #ifndef JETBASE_SUBJETINDICES
2 #define JETBASE_SUBJETINDICES
3 
4 #include <phool/PHObject.h>
5 
6 
7 // ---------------------------------------------------------------------------------------
8 // SubjetIndices class -- used to reference the selected constituents of various jets
9 // ---------------------------------------------------------------------------------------
10 class SubjetIndices : public PHObject
11 {
12 public:
13  SubjetIndices() = default;
14  ~SubjetIndices() override = default;
15 
16  virtual unsigned int nsubjets() const { return 0; };
17  virtual unsigned int index_begin(unsigned int /*which_jet=0*/) const;
18  virtual unsigned int index_end (unsigned int /*which_jet=0*/) const;
19 
20  virtual void add_index_pair (unsigned int , unsigned int ) {};
21 
22 private:
24 };
25 
26 
27 #endif // JETBASE_SUBJETINDICES_H