#ifndef ATLAS_AtlPlotterFolder
#define ATLAS_AtlPlotterFolder
#ifndef ROOT_TNamed
#include <TNamed.h>
#endif
#ifndef ROOT_TList
#include <TList.h>
#endif
#ifndef ATLAS_AtlSample
#include <AtlSample.h>
#endif


class AtlPlotterFolder : public TNamed {

  public:
    
  private:
    TString fColor;         // Folder color
    
    TList   *fListOfSamples; //List of all samples in this folder
    
  public:
    AtlPlotterFolder(const char* Name, const char* Title,
		     const char* Color);
    virtual ~AtlPlotterFolder();

    void AddSample(AtlSample* sample);
    
    inline TList      *GetListOfSamples() { return fListOfSamples; }
    inline const char *GetColor()         { return fColor; }

    
    ClassDef(AtlPlotterFolder,0) // A++ plotting task MC folder
};
#endif

 AtlPlotterFolder.h:1
 AtlPlotterFolder.h:2
 AtlPlotterFolder.h:3
 AtlPlotterFolder.h:4
 AtlPlotterFolder.h:5
 AtlPlotterFolder.h:6
 AtlPlotterFolder.h:7
 AtlPlotterFolder.h:8
 AtlPlotterFolder.h:9
 AtlPlotterFolder.h:10
 AtlPlotterFolder.h:11
 AtlPlotterFolder.h:12
 AtlPlotterFolder.h:13
 AtlPlotterFolder.h:14
 AtlPlotterFolder.h:15
 AtlPlotterFolder.h:16
 AtlPlotterFolder.h:17
 AtlPlotterFolder.h:18
 AtlPlotterFolder.h:19
 AtlPlotterFolder.h:20
 AtlPlotterFolder.h:21
 AtlPlotterFolder.h:22
 AtlPlotterFolder.h:23
 AtlPlotterFolder.h:24
 AtlPlotterFolder.h:25
 AtlPlotterFolder.h:26
 AtlPlotterFolder.h:27
 AtlPlotterFolder.h:28
 AtlPlotterFolder.h:29
 AtlPlotterFolder.h:30
 AtlPlotterFolder.h:31
 AtlPlotterFolder.h:32
 AtlPlotterFolder.h:33
 AtlPlotterFolder.h:34
 AtlPlotterFolder.h:35
 AtlPlotterFolder.h:36
 AtlPlotterFolder.h:37
 AtlPlotterFolder.h:38