KaliVeda
Toolkit for HIC analysis
KVIDContour.h
1 /*
2 $Id: KVIDContour.h,v 1.2 2009/03/03 13:36:00 franklan Exp $
3 $Revision: 1.2 $
4 $Date: 2009/03/03 13:36:00 $
5 */
6 
9 
10 #ifndef __KVIDCONTOUR_H
11 #define __KVIDCONTOUR_H
12 
13 #include "KVIDentifier.h"
14 #include "TCutG.h"
15 
23 class KVIDContour : public KVIDentifier {
24 
25 public:
26  KVIDContour();
27  KVIDContour(const KVIDContour&);
28  KVIDContour(const TCutG&);
29  virtual ~KVIDContour();
30 
31  virtual Int_t InsertPoint()
32  {
33  if (GetEditable()) {
34  return TCutG::InsertPoint();
35  }
36  else {
37  return -2;
38  }
39  }; // *MENU*
40 
41  ClassDef(KVIDContour, 1) //Basic graphical contour class for use in particle identification
42 };
43 
44 #endif
int Int_t
#define ClassDef(name, id)
Basic graphical contour class for use in particle identification.
Definition: KVIDContour.h:23
virtual ~KVIDContour()
Destructor.
Definition: KVIDContour.cpp:51
virtual Int_t InsertPoint()
Definition: KVIDContour.h:31
KVIDContour()
Default constructor.
Definition: KVIDContour.cpp:19
Base class for graphical cuts used in particle identification.
Definition: KVIDentifier.h:28
Bool_t GetEditable() const
virtual Int_t InsertPoint()