CMS 3D CMS Logo

SurveyInputTrackerFromDB.cc
Go to the documentation of this file.
11 
12 // Database
19 
21 
23  : textFileName(cfg.getParameter<std::string>("textFileName")) {}
24 
26  if (theFirstEvent) {
27  // std::cout << "***************ENTERING INITIALIZATION******************" << std::endl;
28 
29  //Retrieve tracker topology from geometry
31  setup.get<TrackerTopologyRcd>().get(tTopoHandle);
32  const TrackerTopology* const tTopo = tTopoHandle.product();
33 
34  //Get map from textreader
35  SurveyInputTextReader dataReader;
36  dataReader.readFile(textFileName);
37  uIdMap = dataReader.UniqueIdMap();
38 
40  setup.get<IdealGeometryRecord>().get(geom);
42  setup.get<PTrackerParametersRcd>().get(ptp);
44 
45  addComponent(new AlignableTracker(tracker, tTopo));
47 
48  //write out to a DB ...
49  Alignments* myAlignments = detector()->alignments();
50  AlignmentErrorsExtended* myAlignmentErrorsExtended = detector()->alignmentErrors();
51 
52  // 2. Store alignment[Error]s to DB
54  // Call service
55 
56  if (!poolDbService.isAvailable()) // Die if not available
57  throw cms::Exception("NotAvailable") << "PoolDBOutputService not available";
58 
59  poolDbService->writeOne<Alignments>(myAlignments, poolDbService->beginOfTime(), "TrackerAlignmentRcd");
60  poolDbService->writeOne<AlignmentErrorsExtended>(
61  myAlignmentErrorsExtended, poolDbService->beginOfTime(), "TrackerAlignmentErrorExtendedRcd");
62 
63  theFirstEvent = false;
64  }
65 }
66 
68  const align::Alignables& comp = ali->components();
69  unsigned int nComp = comp.size();
70 
71  for (unsigned int i = 0; i < nComp; ++i)
72  addSurveyInfo(comp[i]);
73 
75 
76  SurveyInputTextReader::MapType::const_iterator it = uIdMap.find(std::make_pair(ali->id(), ali->alignableObjectId()));
77 
78  if (it != uIdMap.end()) {
79  const align::Scalars& parameters = (it)->second;
80 
81  //move the surface
82  //displacement
83  align::LocalVector lvector(parameters[0], parameters[1], parameters[2]);
84  align::GlobalVector gvector = ali->surface().toGlobal(lvector);
85  ali->move(gvector);
86  //rotation
87  Basic3DVector<align::Scalar> rot_aa(parameters[3], parameters[4], parameters[5]);
88  align::RotationType rotation(rot_aa, rot_aa.mag());
90 
91  //sets the errors for the hierarchy level
92  double* errorData = error.Array();
93  for (unsigned int i = 0; i < 21; ++i) {
94  errorData[i] = parameters[i + 6];
95  }
96 
97  ali->setSurvey(new SurveyDet(ali->surface(), error * (1e-6)));
98  } else {
99  error = ROOT::Math::SMatrixIdentity();
100  ali->setSurvey(new SurveyDet(ali->surface(), error * 1e-6));
101  }
102 }
103 // Plug in to framework
104 
106 
align::ID id() const
Return the ID of Alignable, i.e. DetId of &#39;first&#39; component GeomDet(Unit).
Definition: Alignable.h:189
virtual void rotateInLocalFrame(const RotationType &rotation)
Rotation intepreted in the local reference frame.
Definition: Alignable.cc:137
void readFile(const std::string &textFileName)
Read given text file.
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:2
TrackerGeometry * build(const GeometricDet *gd, const PTrackerParameters &ptp, const TrackerTopology *tTopo)
virtual void move(const GlobalVector &displacement)=0
Movement with respect to the global reference frame.
virtual const Alignables & components() const =0
Return vector of all direct components.
static void addComponent(Alignable *)
SurveyInputTrackerFromDB(const edm::ParameterSet &)
U second(std::pair< T, U > const &p)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
virtual StructureType alignableObjectId() const =0
Return the alignable type identifier.
std::vector< Scalar > Scalars
Definition: Utilities.h:27
bool isAvailable() const
Definition: Service.h:40
void writeOne(T *payload, Time_t time, const std::string &recordName, bool withlogging=false)
static Alignable * detector()
Get alignable detector as read from input.
const AlignableSurface & surface() const
Return the Surface (global position and orientation) of the object.
Definition: Alignable.h:135
void addSurveyInfo(Alignable *)
Add survey info to an alignable.
const MapType & UniqueIdMap() const
void setSurvey(const SurveyDet *)
Set survey info.
Definition: Alignable.cc:340
std::vector< Alignable * > Alignables
Definition: Utilities.h:32
virtual Alignments * alignments() const =0
Return vector of alignment data.
T get() const
Definition: EventSetup.h:71
align::GlobalPoints toGlobal(const align::LocalPoints &) const
Return in global coord given a set of local points.
SurveyInputTextReader::MapType uIdMap
math::Error< 6 >::type ErrorMatrix
Definition: Definitions.h:39
void analyze(const edm::Event &, const edm::EventSetup &) override
Read ideal tracker geometry from DB.
T const * product() const
Definition: ESHandle.h:86
virtual AlignmentErrorsExtended * alignmentErrors() const =0
Return vector of alignment errors.