Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:33

0001 #ifndef DDLSPECPAR_H
0002 #define DDLSPECPAR_H
0003 
0004 #include <string>
0005 
0006 #include "DDXMLElement.h"
0007 
0008 class DDCompactView;
0009 class DDLElementRegistry;
0010 
0011 /// DDLSpecPar processes SpecPar elements.
0012 /** @class DDLSpecPar
0013  * @author Michael Case
0014  *
0015  *  DDLSpecPar.h  -  description
0016  *  -------------------
0017  *  begin: Tue Nov 21 2001
0018  *  email: case@ucdhep.ucdavis.edu
0019  *
0020  *  This element is used to specify parameters for a part in the detector.
0021  *  PartSelector provides a way to associate Parameters with specific parts
0022  *  of the detector.
0023  *
0024  */
0025 
0026 class DDLSpecPar final : public DDXMLElement {
0027 public:
0028   DDLSpecPar(DDLElementRegistry* myreg);
0029 
0030   void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override;
0031 };
0032 
0033 #endif