//*CMZ : 2.22/01 26/04/99 11.51.22 by Rene Brun
//*CMZ : 2.00/00 03/03/99 14.18.31 by Rene Brun
//*CMZ : 1.00/06 23/03/97 11.38.37 by Rene Brun
//*-- Author : Rene Brun 11/02/97
//*KEEP,CopyRight,T=C.
/*************************************************************************
* Copyright(c) 1995-1999, The ROOT System, All rights reserved. *
* Authors: Rene Brun and Fons Rademakers. *
* *
* For the licensing terms see $ROOTSYS/AA_LICENSE. *
* For the list of contributors see $ROOTSYS/AA_CREDITS. *
*************************************************************************/
//*KEND.
//////////////////////////////////////////////////////////////////////////
// //
// A TChainElement describes a component of a TChain. //
// //
//////////////////////////////////////////////////////////////////////////
//*KEEP,TTree.
#include "TTree.h"
//*KEEP,TChainElement,T=C++.
#include "TChainElement.h"
//*KEND.
ClassImp(TChainElement)
//______________________________________________________________________________
TChainElement::TChainElement(): TNamed()
{
//*-*-*-*-*-*Default constructor for a chain element*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* =======================================
fNPackets = 0;
fPackets = 0;
fEntries = 0;
fPacketSize = 100;
fBaddress = 0;
fStatus = -1;
}
//______________________________________________________________________________
TChainElement::TChainElement(const Text_t *name, const Text_t *title)
:TNamed(name,title)
{
//*-*-*-*-*-*-*-*-*-*-*-*-*Create a chain element*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ======================
//
fNPackets = 0;
fPackets = 0;
fEntries = 0;
fPacketSize = 100;
fBaddress = 0;
fStatus = -1;
}
//______________________________________________________________________________
TChainElement::~TChainElement()
{
//*-*-*-*-*-*Default destructor for a chain element*-*-*-*-*-*-*-*-*-*-*-*
//*-* ======================================
delete [] fPackets;
}
//_______________________________________________________________________
void TChainElement::CreatePackets()
{
//*-*-*-*-*-*-*-*-*Initialize the packet descriptor string*-*-*-*-*-*-*-*-*-*
//*-* =======================================
fNPackets = 1 + fEntries/fPacketSize;
delete [] fPackets;
fPackets = new Text_t[fNPackets+1];
for (Int_t i=0;i<fNPackets;i++) fPackets[i] = ' ';
fPackets[fNPackets] = 0;
}
//_______________________________________________________________________
void TChainElement::SetPacketSize(Int_t size)
{
//*-*-*-*-*-*-*-*-*Set number of entries per packet for parallel root*-*-*-*-*
//*-* =================================================
fPacketSize = size;
}
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.