CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
SurveyInputTrackerFromDB Class Reference

#include <SurveyInputTrackerFromDB.h>

Inheritance diagram for SurveyInputTrackerFromDB:
SurveyInputBase edm::EDAnalyzer

Public Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 Read ideal tracker geometry from DB. More...
 
 SurveyInputTrackerFromDB (const edm::ParameterSet &)
 
- Public Member Functions inherited from SurveyInputBase
virtual void beginJob ()
 Read data from input. More...
 
virtual ~SurveyInputBase ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Private Member Functions

void addSurveyInfo (Alignable *)
 Add survey info to an alignable. More...
 

Private Attributes

std::string textFileName
 
SurveyInputTextReader::MapType uIdMap
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- Static Public Member Functions inherited from SurveyInputBase
static void addComponent (Alignable *)
 
static Alignabledetector ()
 Get alignable detector as read from input. More...
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 
- Protected Attributes inherited from SurveyInputBase
bool theFirstEvent
 

Detailed Description

Class to read ideal tracker from DB.

Date:
2010/01/07 14:36:23
Revision:
1.3
Author
Chung Khim Lae

Definition at line 16 of file SurveyInputTrackerFromDB.h.

Constructor & Destructor Documentation

SurveyInputTrackerFromDB::SurveyInputTrackerFromDB ( const edm::ParameterSet cfg)

Definition at line 20 of file SurveyInputTrackerFromDB.cc.

20  :
21 textFileName( cfg.getParameter<std::string>("textFileName") )
22 {
23 }
T getParameter(std::string const &) const

Member Function Documentation

void SurveyInputTrackerFromDB::addSurveyInfo ( Alignable ali)
private

Add survey info to an alignable.

Definition at line 61 of file SurveyInputTrackerFromDB.cc.

References Alignable::alignableObjectId(), Alignable::components(), alignCSCRings::e, error, i, Alignable::id(), Basic3DVector< T >::mag(), Alignable::move(), Parameters::parameters, Alignable::rotateInLocalFrame(), idealTransformation::rotation, edm::second(), Alignable::setSurvey(), Alignable::surface(), AlignableSurface::toGlobal(), and uIdMap.

Referenced by analyze().

62 {
63  const align::Alignables& comp = ali->components();
64  unsigned int nComp = comp.size();
65 
66  for (unsigned int i = 0; i < nComp; ++i) addSurveyInfo(comp[i]);
67 
69 
70  SurveyInputTextReader::MapType::const_iterator it
71  = uIdMap.find(std::make_pair(ali->id(), ali->alignableObjectId()));
72 
73  if (it != uIdMap.end()){
74 
75  const align::Scalars& parameters = (it)->second;
76 
77  //move the surface
78  //displacement
79  align::LocalVector lvector (parameters[0], parameters[1], parameters[2]);
80  align::GlobalVector gvector = ali->surface().toGlobal(lvector);
81  ali->move(gvector);
82  //rotation
83  Basic3DVector<align::Scalar> rot_aa(parameters[3], parameters[4], parameters[5]);
84  align::RotationType rotation(rot_aa, rot_aa.mag());
86 
87  //sets the errors for the hierarchy level
88  double* errorData = error.Array();
89  for (unsigned int i = 0; i < 21; ++i){errorData[i] = parameters[i+6];}
90 
91  ali->setSurvey( new SurveyDet(ali->surface(), error*(1e-6)) );
92  }
93  else {
94  error = ROOT::Math::SMatrixIdentity();
95  ali->setSurvey( new SurveyDet(ali->surface(), error * 1e-6) );
96  }
97 
98 }
align::ID id() const
Return the ID of Alignable, i.e. DetId of &#39;first&#39; component GeomDet(Unit).
Definition: Alignable.h:180
int i
Definition: DBlmapReader.cc:9
dictionary parameters
Definition: Parameters.py:2
virtual void rotateInLocalFrame(const RotationType &rotation)
Rotation intepreted in the local reference frame.
Definition: Alignable.cc:91
virtual void move(const GlobalVector &displacement)=0
Movement with respect to the global reference frame.
virtual Alignables components() const =0
Return vector of all direct components.
U second(std::pair< T, U > const &p)
std::vector< Scalar > Scalars
Definition: Utilities.h:22
virtual StructureType alignableObjectId() const =0
Return the alignable type identifier.
const AlignableSurface & surface() const
Return the Surface (global position and orientation) of the object.
Definition: Alignable.h:126
void addSurveyInfo(Alignable *)
Add survey info to an alignable.
void setSurvey(const SurveyDet *)
Set survey info.
Definition: Alignable.cc:268
std::vector< Alignable * > Alignables
Definition: Utilities.h:28
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 SurveyInputTrackerFromDB::analyze ( const edm::Event ,
const edm::EventSetup setup 
)
virtual

Read ideal tracker geometry from DB.

Implements SurveyInputBase.

Definition at line 25 of file SurveyInputTrackerFromDB.cc.

References SurveyInputBase::addComponent(), addSurveyInfo(), Alignable::alignmentErrors(), Alignable::alignments(), cond::service::PoolDBOutputService::beginOfTime(), TrackerGeomBuilderFromGeometricDet::build(), SurveyInputBase::detector(), relativeConstraints::geom, edm::EventSetup::get(), edm::Service< T >::isAvailable(), SurveyInputTextReader::readFile(), textFileName, SurveyInputBase::theFirstEvent, patCandidatesForDimuonsSequences_cff::tracker, uIdMap, SurveyInputTextReader::UniqueIdMap(), and cond::service::PoolDBOutputService::writeOne().

26 {
27  if (theFirstEvent) {
28 
29  // std::cout << "***************ENTERING INITIALIZATION******************" << std::endl;
30 
31  //Get map from textreader
32  SurveyInputTextReader dataReader;
33  dataReader.readFile( textFileName );
34  uIdMap = dataReader.UniqueIdMap();
35 
37  setup.get<IdealGeometryRecord>().get(geom);
39 
40  addComponent( new AlignableTracker( tracker ) );
42 
43  //write out to a DB ...
44  Alignments* myAlignments = detector()->alignments();
45  AlignmentErrors* myAlignmentErrors = detector()->alignmentErrors();
46 
47  // 2. Store alignment[Error]s to DB
49  // Call service
50 
51  if( !poolDbService.isAvailable() ) // Die if not available
52  throw cms::Exception("NotAvailable") << "PoolDBOutputService not available";
53 
54  poolDbService->writeOne<Alignments>( myAlignments, poolDbService->beginOfTime(), "TrackerAlignmentRcd" );
55  poolDbService->writeOne<AlignmentErrors>( myAlignmentErrors, poolDbService->beginOfTime(), "TrackerAlignmentErrorRcd" );
56 
57  theFirstEvent = false;
58  }
59 }
void readFile(const std::string &textFileName)
Read given text file.
static void addComponent(Alignable *)
bool isAvailable() const
Definition: Service.h:47
void writeOne(T *payload, Time_t time, const std::string &recordName, bool withlogging=false)
static Alignable * detector()
Get alignable detector as read from input.
void addSurveyInfo(Alignable *)
Add survey info to an alignable.
const MapType & UniqueIdMap() const
const T & get() const
Definition: EventSetup.h:55
TrackerGeometry * build(const GeometricDet *gd)
SurveyInputTextReader::MapType uIdMap
virtual Alignments * alignments() const =0
Return vector of alignment data.
virtual AlignmentErrors * alignmentErrors() const =0
Return vector of alignment errors.

Member Data Documentation

std::string SurveyInputTrackerFromDB::textFileName
private

Definition at line 35 of file SurveyInputTrackerFromDB.h.

Referenced by analyze().

SurveyInputTextReader::MapType SurveyInputTrackerFromDB::uIdMap
private

Definition at line 33 of file SurveyInputTrackerFromDB.h.

Referenced by addSurveyInfo(), and analyze().