OPAL (Object Oriented Parallel Accelerator Library)  2024.1
OPAL
OpalFlexibleCollimator.cpp
Go to the documentation of this file.
1 //
2 // Class OpalFlexibleCollimator
3 // The Flexible Collimator element.
4 //
5 // Copyright (c) 200x - 2020, Paul Scherrer Institut, Villigen PSI, Switzerland
6 // All rights reserved
7 //
8 // This file is part of OPAL.
9 //
10 // OPAL is free software: you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
17 //
19 #include "Attributes/Attributes.h"
23 
24 #include <boost/regex.hpp>
25 
27  OpalElement(SIZE, "FLEXIBLECOLLIMATOR",
28  "The \"FLEXIBLECOLLIMATOR\" element defines a flexible collimator."),
29  parmatint_m(nullptr) {
31  ("FNAME", "File name containing description of holes");
33  ("DESCRIPTION", "String describing the distribution of holes");
35  ("DUMP", "Save quadtree and holes of collimator", false);
37 
38  setElement(new FlexibleCollimatorRep("FLEXIBLECOLLIMATOR"));
39 }
40 
41 
43  OpalElement(name, parent),
44  parmatint_m(nullptr) {
46 }
47 
48 
50  if (parmatint_m)
51  delete parmatint_m;
52 }
53 
54 
56  return new OpalFlexibleCollimator(name, this);
57 }
58 
59 
62 
63  FlexibleCollimatorRep* coll =
64  dynamic_cast<FlexibleCollimatorRep*>(getElement());
65 
66  double length = Attributes::getReal(itsAttr[LENGTH]);
67  coll->setElementLength(length);
68 
69  std::string fname = Attributes::getString(itsAttr[FNAME]);
70  std::string desc = Attributes::getString(itsAttr[DESC]);
71  if (!fname.empty()) {
72  std::ifstream it(fname);
73  std::string str((std::istreambuf_iterator<char>(it)),
74  std::istreambuf_iterator<char>());
75 
76  str = boost::regex_replace(str, boost::regex("//.*?\\n"), std::string(""), boost::match_default | boost::format_all);
77  str = boost::regex_replace(str, boost::regex("\\s"), std::string(""), boost::match_default | boost::format_all);
78 
79  coll->setDescription(str);
80  } else if (!desc.empty()) {
81  desc = boost::regex_replace(desc, boost::regex("[\\t ]"), std::string(""), boost::match_default | boost::format_all);
82  coll->setDescription(desc);
83  } else if (getOpalName() != "FLEXIBLECOLLIMATOR") {
84  throw OpalException("OpalFlexibleCollimator::update",
85  "A description for the holes has to be provided, either using DESCRIPTION or FNAME");
86  }
88 
89  if (itsAttr[PARTICLEMATTERINTERACTION] && parmatint_m == nullptr) {
90  const std::string matterDescriptor = Attributes::getString(itsAttr[PARTICLEMATTERINTERACTION]);
92  parmatint_m = orig->clone(matterDescriptor);
95  }
96 
99  }
100 
101  // Transmit "unknown" attributes.
103 }
ParticleMatterInteraction * parmatint_m
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two distribute and or modify the software for each author s protection and we want to make certain that everyone understands that there is no warranty for this free software If the software is modified by someone else and passed we want its recipients to know that what they have is not the so that any problems introduced by others will not reflect on the original authors reputations any free program is threatened constantly by software patents We wish to avoid the danger that redistributors of a free program will individually obtain patent in effect making the program proprietary To prevent we have made it clear that any patent must be licensed for everyone s free use or not licensed at all The precise terms and conditions for distribution and modification follow GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR DISTRIBUTION AND MODIFICATION This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License The refers to any such program or and a work based on the Program means either the Program or any derivative work under copyright a work containing the Program or a portion of it
Definition: LICENSE:43
std::string getString(const Attribute &attr)
Get string value.
Definition: Attributes.cpp:343
virtual void setParticleMatterInteraction(ParticleMatterInteractionHandler *spys)
static ParticleMatterInteraction * find(const std::string &name)
Find named PARTICLEMATTERINTERACTION.
virtual void update()
Update the embedded CLASSIC collimator.
void setElement(ElementBase *)
Assign new CLASSIC element.
Definition: Element.h:125
bool getBool(const Attribute &attr)
Return logical value.
Definition: Attributes.cpp:100
Attribute makeBool(const std::string &name, const std::string &help)
Make logical attribute.
Definition: Attributes.cpp:90
The base class for all OPAL exceptions.
Definition: OpalException.h:28
void setOutputFN(std::string fn)
Set output filename.
void initParticleMatterInteractionHandler(ElementBase &element)
Attribute makeString(const std::string &name, const std::string &help)
Make string attribute.
Definition: Attributes.cpp:332
ElementBase * getElement() const
Return the embedded CLASSIC element.
Definition: Element.h:120
void setDescription(const std::string &desc)
const std::string & getOpalName() const
Return object name.
Definition: Object.cpp:310
std::vector< Attribute > itsAttr
The object attributes.
Definition: Object.h:216
const std::string name
double getReal(const Attribute &attr)
Return real value.
Definition: Attributes.cpp:252
ParticleMatterInteractionHandler * handler_m
virtual ParticleMatterInteraction * clone(const std::string &name)
Make clone.
virtual void setElementLength(double length)
Set design length.
Definition: ElementBase.h:419
virtual OpalFlexibleCollimator * clone(const std::string &name)
Make clone.
virtual void updateUnknown(ElementBase *)
Transmit the ``unknown&#39;&#39; (not known to OPAL) attributes to CLASSIC.
OpalFlexibleCollimator()
Exemplar constructor.
virtual void update()
Update the embedded CLASSIC element.
void registerOwnership() const
void writeHolesAndQuadtree(const std::string &baseFilename) const