/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 *    File: $Id: RooList.h,v 1.9 2007/05/11 09:11:30 verkerke Exp $
 * Authors:                                                                  *
 *   WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu       *
 *   DK, David Kirkby,    UC Irvine,         dkirkby@uci.edu                 *
 *                                                                           *
 * Copyright (c) 2000-2005, Regents of the University of California          *
 *                          and Stanford University. All rights reserved.    *
 *                                                                           *
 * Redistribution and use in source and binary forms,                        *
 * with or without modification, are permitted according to the terms        *
 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)             *
 *****************************************************************************/
#ifndef ROO_LIST
#define ROO_LIST

#include "TList.h"

class RooList : public TList {
public:
  inline RooList() : TList() { }
  virtual ~RooList() {} ;
  TObjOptLink *findLink(const char *name, const char *caller= 0) const;
  Bool_t moveBefore(const char *before, const char *target, const char *caller= 0);
  Bool_t moveAfter(const char *after, const char *target, const char *caller= 0);
protected:  
  ClassDef(RooList,1) // TList with extra support for Option_t associations
};

#endif
 RooList.h:1
 RooList.h:2
 RooList.h:3
 RooList.h:4
 RooList.h:5
 RooList.h:6
 RooList.h:7
 RooList.h:8
 RooList.h:9
 RooList.h:10
 RooList.h:11
 RooList.h:12
 RooList.h:13
 RooList.h:14
 RooList.h:15
 RooList.h:16
 RooList.h:17
 RooList.h:18
 RooList.h:19
 RooList.h:20
 RooList.h:21
 RooList.h:22
 RooList.h:23
 RooList.h:24
 RooList.h:25
 RooList.h:26
 RooList.h:27
 RooList.h:28
 RooList.h:29
 RooList.h:30
 RooList.h:31
 RooList.h:32