File indexing completed on 2024-04-06 11:56:08
0001 #ifndef SELECTIONUSERVARIABLES_H
0002 #define SELECTIONUSERVARIABLES_H
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #include "Alignment/CommonAlignment/interface/AlignmentUserVariables.h"
0019
0020 #include <vector>
0021
0022 class SelectionUserVariables : public AlignmentUserVariables {
0023 public:
0024 explicit SelectionUserVariables(const std::vector<char>& sel) : myFullSelection(sel) {}
0025 ~SelectionUserVariables() override {}
0026 SelectionUserVariables* clone() const override { return new SelectionUserVariables(*this); }
0027
0028 const std::vector<char>& fullSelection() const { return myFullSelection; }
0029
0030 private:
0031 std::vector<char> myFullSelection;
0032 };
0033
0034 #endif