#ifndef ROOT_TMixture
#define ROOT_TMixture
#ifndef ROOT_TMaterial
#include "TMaterial.h"
#endif
class TMixture  : public TMaterial {
protected:
   Int_t        fNmixt;       
   Float_t      *fAmixt;      
   Float_t      *fZmixt;      
   Float_t      *fWmixt;      
public:
   TMixture();
   TMixture(const char *name, const char *title, Int_t nmixt);
   virtual ~TMixture();
   virtual void  DefineElement(Int_t n, Float_t a, Float_t z, Float_t w);
   Int_t         GetNmixt() const {return fNmixt;}
   Float_t      *GetAmixt() const {return fAmixt;}
   Float_t      *GetZmixt() const {return fZmixt;}
   Float_t      *GetWmixt() const {return fWmixt;}
   ClassDef(TMixture,1)  
};
#endif
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.