CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SelectionUserVariables.h
Go to the documentation of this file.
1 #ifndef SELECTIONUSERVARIABLES_H
2 #define SELECTIONUSERVARIABLES_H
3 
19 
21 {
22  public:
23  explicit SelectionUserVariables(const std::vector<char> &sel) : myFullSelection(sel) {}
25  virtual SelectionUserVariables* clone() const { return new SelectionUserVariables(*this);}
26 
27  const std::vector<char>& fullSelection() const {return myFullSelection;}
28 
29  private:
30  std::vector<char> myFullSelection;
31 };
32 
33 #endif
SelectionUserVariables(const std::vector< char > &sel)
std::vector< char > myFullSelection
const std::vector< char > & fullSelection() const
virtual SelectionUserVariables * clone() const
(Abstract) Base class for alignment algorithm user variables