// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // /////////////////////////////////////////////////////////////////////////////// // File: CCalMaterialFactory.hh // Description: CCalMaterialFactory is a singleton class to get from a file // the information to build CMS Materials. A G4Material is built // only if asked. A parallel structure with the file information // is keeped in a CCalMaterial pointer vector (CCalMaterialTable). /////////////////////////////////////////////////////////////////////////////// #ifndef CCalMaterialFactory_h #define CCalMaterialFactory_h 1 #include #include "CCalMaterial.hh" #include "CCalAMaterial.hh" #include "G4MaterialTable.hh" #include "G4ElementTable.hh" typedef std::vector CCalMaterialTable; typedef std::vector CCalAMaterialTable; class CCalMaterialFactory { public: enum MatDescription {byWeight, byVolume, byAtomic}; ~CCalMaterialFactory(); static CCalMaterialFactory* getInstance(const G4String&, const G4String&); static CCalMaterialFactory* getInstance(const G4String&); static CCalMaterialFactory* getInstance(); G4Material* findMaterial(const G4String& ) const; G4Element* findElement (const G4String& ) const; //Adds a new CCal Material to the list and returns a G4Material. G4Element* addElement (const G4String&, const G4String&, G4double, G4double, G4double ); //Adds a new CCal Material to the list and returns a G4Material. G4Material* addMaterial(const G4String& nam, G4double density, G4int nconst, G4String mats[], G4double prop[], MatDescription md=byWeight); void readElements (const G4String&); void readMaterials(const G4String&); protected: void readElements(std::ifstream&); void readMaterials(std::ifstream&); private: //Constructor CCalMaterialFactory(); G4Material* findG4Material (const G4String& ) const; CCalMaterial* findCCalMaterial (const G4String& ) const; CCalAMaterial* findCCalAMaterial(const G4String& ) const; //Adds a CCalMaterial to the list. Used by readMaterials and addMaterial. CCalMaterial* addCCalMaterial(const G4String& nam, G4double density, G4int nconst, G4String mats[], G4double prop[], MatDescription md=byWeight); private: static CCalMaterialFactory* instance; static G4String elementfile; //File with the elements. static G4String mixturefile; //File with the materials. CCalMaterialTable theCCalMaterials; //Where the CCalMaterials are stored CCalAMaterialTable theCCalAMaterials; //Where the CCalAMaterials are stored }; #endif