Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DDL_RotationSequence_H
0002 #define DDL_RotationSequence_H
0003 
0004 #include <string>
0005 
0006 #include "DDLRotationByAxis.h"
0007 
0008 class DDCompactView;
0009 class DDLElementRegistry;
0010 
0011 ///  DDLRotationSequence handles a set of Rotations.
0012 /** @class DDLRotationSequence
0013  * @author Michael Case
0014  *
0015  *  DDLRotationSequence.h  -  description
0016  *  -------------------
0017  *  begin: Friday Nov. 15, 2003
0018  *  email: case@ucdhep.ucdavis.edu
0019  *
0020  *
0021  *  This is the RotationSequence processor.
0022  *
0023  */
0024 class DDLRotationSequence final : public DDLRotationByAxis {
0025 public:
0026   DDLRotationSequence(DDLElementRegistry* myreg);
0027 
0028   void preProcessElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override;
0029   void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override;
0030 };
0031 
0032 #endif