ROOT logo
// @(#)root/tree:$Id: TCut.h 20882 2007-11-19 11:31:26Z rdm $
// Author: Rene Brun   14/04/97

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TCut
#define ROOT_TCut

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TCut                                                                 //
//                                                                      //
// A specialized string object used in TTree selections.                //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TNamed
#include "TNamed.h"
#endif

class TCut : public TNamed {

public:
   TCut();
   TCut(const char *title);
   TCut(const char *name, const char *title);
   TCut(const TCut &cut);
   virtual ~TCut();

   // Assignment
   TCut&    operator=(const char *rhs);
   TCut&    operator=(const TCut &rhs);
   TCut&    operator+=(const char *rhs);
   TCut&    operator+=(const TCut &rhs);
   TCut&    operator*=(const char *rhs);
   TCut&    operator*=(const TCut &rhs);

   friend TCut operator+(const TCut &lhs, const char *rhs);
   friend TCut operator+(const char *lhs, const TCut &rhs);
   friend TCut operator+(const TCut &lhs, const TCut &rhs);
   friend TCut operator*(const TCut &lhs, const char *rhs);
   friend TCut operator*(const char *lhs, const TCut &rhs);
   friend TCut operator*(const TCut &lhs, const TCut &rhs);
   friend TCut operator&&(const TCut &lhs, const char *rhs);
   friend TCut operator&&(const char *lhs, const TCut &rhs);
   friend TCut operator&&(const TCut &lhs, const TCut &rhs);
   friend TCut operator||(const TCut &lhs, const char *rhs);
   friend TCut operator||(const char *lhs, const TCut &rhs);
   friend TCut operator||(const TCut &lhs, const TCut &rhs);
   friend TCut operator!(const TCut &rhs);

   // Type conversion
   operator const char*() const { return GetTitle(); }

   ClassDef(TCut,1)  //A specialized string object used for TTree selections
};

#endif
 TCut.h:1
 TCut.h:2
 TCut.h:3
 TCut.h:4
 TCut.h:5
 TCut.h:6
 TCut.h:7
 TCut.h:8
 TCut.h:9
 TCut.h:10
 TCut.h:11
 TCut.h:12
 TCut.h:13
 TCut.h:14
 TCut.h:15
 TCut.h:16
 TCut.h:17
 TCut.h:18
 TCut.h:19
 TCut.h:20
 TCut.h:21
 TCut.h:22
 TCut.h:23
 TCut.h:24
 TCut.h:25
 TCut.h:26
 TCut.h:27
 TCut.h:28
 TCut.h:29
 TCut.h:30
 TCut.h:31
 TCut.h:32
 TCut.h:33
 TCut.h:34
 TCut.h:35
 TCut.h:36
 TCut.h:37
 TCut.h:38
 TCut.h:39
 TCut.h:40
 TCut.h:41
 TCut.h:42
 TCut.h:43
 TCut.h:44
 TCut.h:45
 TCut.h:46
 TCut.h:47
 TCut.h:48
 TCut.h:49
 TCut.h:50
 TCut.h:51
 TCut.h:52
 TCut.h:53
 TCut.h:54
 TCut.h:55
 TCut.h:56
 TCut.h:57
 TCut.h:58
 TCut.h:59
 TCut.h:60
 TCut.h:61
 TCut.h:62
 TCut.h:63
 TCut.h:64