#ifndef ROOT_TBranchSTL
#define ROOT_TBranchSTL
#include "TBranch.h"
#include "TTree.h"
#include "TVirtualCollectionProxy.h"
#include "TBrowser.h"
#include "TBranchObject.h"
#include "TBranchElement.h"
#include "TIndArray.h"
#include <map>
#include <vector>
#include <utility>
class TBranchSTL: public TBranch {
public:
TBranchSTL();
TBranchSTL( TTree* tree, const char* name,
TVirtualCollectionProxy* collProxy,
Int_t buffsize, Int_t splitlevel );
TBranchSTL( TBranch* parent, const char* name,
TVirtualCollectionProxy* collProxy,
Int_t buffsize, Int_t splitlevel,
TStreamerInfo* info, Int_t id );
virtual ~TBranchSTL();
virtual void Browse( TBrowser *b );
virtual Bool_t IsFolder() const;
virtual Int_t Fill();
virtual const char *GetClassName() const { return fClassName.Data(); }
virtual Int_t GetExpectedType(TClass *&clptr,EDataType &type);
virtual Int_t GetEntry( Long64_t entry = 0, Int_t getall = 0 );
virtual TStreamerInfo *GetInfo() const;
virtual void Print(Option_t*) const;
virtual void SetAddress( void* addr );
ClassDef( TBranchSTL, 1 )
private:
void ReadLeavesImpl( TBuffer& b );
void FillLeavesImpl( TBuffer& b );
#ifndef __CINT__
struct ElementBranchHelper_t
{
ElementBranchHelper_t():
fBranch( 0 ), fPointers( 0 ), fId( 0 ),
fBaseOffset( 0 ), fPosition( 0 ) {}
TBranchElement* fBranch;
std::vector<void*>* fPointers;
UChar_t fId;
UInt_t fBaseOffset;
Int_t fPosition;
};
typedef std::map<TClass*, ElementBranchHelper_t> BranchMap_t;
BranchMap_t fBranchMap;
std::vector<ElementBranchHelper_t> fBranchVector;
#endif // __CINT__
TVirtualCollectionProxy* fCollProxy;
TBranch* fParent;
TClass* fIndArrayCl;
TIndArray fInd;
TString fContName;
TString fClassName;
mutable Int_t fClassVersion;
UInt_t fClCheckSum;
mutable TStreamerInfo *fInfo;
char* fObject;
Int_t fID;
};
#endif // ROOT_TBranchSTL