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 Attributes
ApeSettingAlgorithm Class Reference
Inheritance diagram for ApeSettingAlgorithm:
AlignmentAlgorithmBase

Public Member Functions

 ApeSettingAlgorithm (const edm::ParameterSet &cfg)
 Constructor. More...
 
virtual void initialize (const edm::EventSetup &setup, AlignableTracker *tracker, AlignableMuon *muon, AlignableExtras *extras, AlignmentParameterStore *store) override
 Call at beginning of job. More...
 
virtual void run (const edm::EventSetup &setup, const EventInfo &eventInfo) override
 Run the algorithm. More...
 
virtual void terminate (const edm::EventSetup &iSetup) override
 Call at end of job. More...
 
virtual ~ApeSettingAlgorithm ()
 Destructor. More...
 
- Public Member Functions inherited from AlignmentAlgorithmBase
virtual bool addCalibrations (const std::vector< IntegratedCalibrationBase * > &iCals)
 
 AlignmentAlgorithmBase (const edm::ParameterSet &cfg)
 Constructor. More...
 
virtual void beginLuminosityBlock (const edm::EventSetup &setup)
 called at begin of luminosity block (no lumi block info passed yet) More...
 
virtual void beginRun (const edm::EventSetup &setup)
 called at begin of run More...
 
virtual void endLuminosityBlock (const edm::EventSetup &setup)
 called at end of luminosity block (no lumi block info passed yet) More...
 
virtual void endRun (const EndRunInfo &runInfo, const edm::EventSetup &setup)
 called at end of run - order of arguments like in EDProducer etc. More...
 
virtual bool setParametersForRunRange (const RunRange &rr)
 
virtual void startNewLoop ()
 
virtual ~AlignmentAlgorithmBase ()
 Destructor. More...
 

Private Attributes

bool readApeFromAscii_
 
bool readFullLocalMatrix_
 
bool readLocalNotGlobal_
 
bool saveApeToAscii_
 
bool saveComposites_
 
bool saveLocalNotGlobal_
 
bool setComposites_
 
AlignableNavigatortheAlignableNavigator
 
edm::ParameterSet theConfig
 
AlignableTrackertheTracker
 

Additional Inherited Members

- Public Types inherited from AlignmentAlgorithmBase
typedef std::pair< const
Trajectory *, const
reco::Track * > 
ConstTrajTrackPair
 
typedef std::vector
< ConstTrajTrackPair
ConstTrajTrackPairCollection
 
typedef cond::RealTimeType
< cond::runnumber >::type 
RunNumber
 
typedef std::pair< RunNumber,
RunNumber
RunRange
 

Detailed Description

Definition at line 56 of file ApeSettingAlgorithm.cc.

Constructor & Destructor Documentation

ApeSettingAlgorithm::ApeSettingAlgorithm ( const edm::ParameterSet cfg)

Constructor.

Definition at line 93 of file ApeSettingAlgorithm.cc.

References edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), readApeFromAscii_, readFullLocalMatrix_, readLocalNotGlobal_, saveApeToAscii_, saveComposites_, saveLocalNotGlobal_, setComposites_, and theConfig.

93  :
96 {
97  edm::LogInfo("Alignment") << "@SUB=ApeSettingAlgorithm" << "Start.";
98  saveApeToAscii_ = theConfig.getUntrackedParameter<bool>("saveApeToASCII");
99  saveComposites_ = theConfig.getUntrackedParameter<bool>("saveComposites");
100  saveLocalNotGlobal_ = theConfig.getUntrackedParameter<bool>("saveLocalNotGlobal");
101  readApeFromAscii_ = theConfig.getParameter<bool>("readApeFromASCII");
102  readLocalNotGlobal_ = theConfig.getParameter<bool>("readLocalNotGlobal");
103  readFullLocalMatrix_ = theConfig.getParameter<bool>("readFullLocalMatrix");
104  setComposites_ = theConfig.getParameter<bool>("setComposites");
105 
106 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
AlignmentAlgorithmBase(const edm::ParameterSet &cfg)
Constructor.
edm::ParameterSet theConfig
AlignableNavigator * theAlignableNavigator
ApeSettingAlgorithm::~ApeSettingAlgorithm ( )
virtual

Destructor.

Definition at line 110 of file ApeSettingAlgorithm.cc.

References theAlignableNavigator.

111 {
112  delete theAlignableNavigator;
113 }
AlignableNavigator * theAlignableNavigator

Member Function Documentation

void ApeSettingAlgorithm::initialize ( const edm::EventSetup setup,
AlignableTracker tracker,
AlignableMuon muon,
AlignableExtras extras,
AlignmentParameterStore store 
)
overridevirtual

Call at beginning of job.

Implements AlignmentAlgorithmBase.

Definition at line 117 of file ApeSettingAlgorithm.cc.

References AlignableNavigator::alignableFromDetId(), edm::FileInPath::fullPath(), edm::ParameterSet::getParameter(), readApeFromAscii_, readFullLocalMatrix_, readLocalNotGlobal_, setComposites_, theAlignableNavigator, theConfig, theTracker, patCandidatesForDimuonsSequences_cff::tracker, TkRotation< T >::xx(), TkRotation< T >::xy(), TkRotation< T >::xz(), TkRotation< T >::yx(), TkRotation< T >::yy(), TkRotation< T >::yz(), TkRotation< T >::zx(), TkRotation< T >::zy(), and TkRotation< T >::zz().

120 {
121  theAlignableNavigator = new AlignableNavigator(tracker, muon);
123 
124  if (readApeFromAscii_)
125  { std::ifstream apeReadFile(theConfig.getParameter<edm::FileInPath>("apeASCIIReadFile").fullPath().c_str()); //requires <fstream>
126  if (!apeReadFile.good())
127  { edm::LogInfo("Alignment") << "@SUB=initialize" <<"Problem opening APE file: skipping"
128  << theConfig.getParameter<edm::FileInPath>("apeASCIIReadFile").fullPath();
129  return;
130  }
131  std::set<int> apeList; //To avoid duplicates
132  while (!apeReadFile.eof())
133  { int apeId=0; double x11,x21,x22,x31,x32,x33;
135  { apeReadFile>>apeId>>x11>>x21>>x22>>x31>>x32>>x33>>std::ws;}
136  else
137  { apeReadFile>>apeId>>x11>>x22>>x33>>std::ws;}
138  //idr What sanity checks do we need to put here?
139  if (apeId != 0) //read appears valid?
140  { if (apeList.find(apeId) == apeList.end()) //Not previously done
141  { DetId id(apeId);
143  if (alidet)
144  { if ((alidet->components().size()<1) || setComposites_) //the problem with glued dets...
145  { GlobalError globErr;
147  { AlgebraicSymMatrix33 as;
149  { as[0][0]=x11; as[1][0]=x21; as[1][1]=x22;
150  as[2][0]=x31; as[2][1]=x32; as[2][2]=x33;
151  }
152  else
153  { as[0][0]=x11*x11; as[1][1]=x22*x22; as[2][2]=x33*x33;} //local cov.
154  align::RotationType rt=alidet->globalRotation();
156  am[0][0]=rt.xx(); am[0][1]=rt.xy(); am[0][2]=rt.xz();
157  am[1][0]=rt.yx(); am[1][1]=rt.yy(); am[1][2]=rt.yz();
158  am[2][0]=rt.zx(); am[2][1]=rt.zy(); am[2][2]=rt.zz();
159  globErr = GlobalError(ROOT::Math::SimilarityT(am,as));
160  }
161  else
162  {
163  globErr = GlobalError(x11,x21,x22,x31,x32,x33);
164  }
165  alidet->setAlignmentPositionError(globErr, false); // do not propagate down!
166  apeList.insert(apeId); //Flag it's been set
167  }
168  else
169  { edm::LogInfo("Alignment") << "@SUB=initialize" << "Not Setting APE for Composite DetId "<<apeId;
170  }
171  }
172  }
173  else
174  { edm::LogInfo("Alignment") << "@SUB=initialize" << "Skipping duplicate APE for DetId "<<apeId;
175  }
176  }
177  }
178  apeReadFile.close();
179  edm::LogInfo("Alignment") << "@SUB=initialize" << "Set "<<apeList.size()<<" APE values.";
180  }
181 }
T xx() const
T getParameter(std::string const &) const
AlignableTracker * theTracker
T yx() const
edm::ParameterSet theConfig
T zx() const
T xy() const
GlobalErrorBase< double, ErrorMatrixTag > GlobalError
Definition: GlobalError.h:11
T zz() const
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepSym< double, 3 > > AlgebraicSymMatrix33
T zy() const
AlignableNavigator * theAlignableNavigator
T yy() const
Definition: DetId.h:18
T xz() const
std::string fullPath() const
Definition: FileInPath.cc:171
AlignableDetOrUnitPtr alignableFromDetId(const DetId &detid)
Returns AlignableDetOrUnitPtr corresponding to given DetId.
T yz() const
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepStd< double, 3, 3 > > AlgebraicMatrix33
void ApeSettingAlgorithm::run ( const edm::EventSetup setup,
const EventInfo eventInfo 
)
overridevirtual

Run the algorithm.

Implements AlignmentAlgorithmBase.

Definition at line 223 of file ApeSettingAlgorithm.cc.

Referenced by Types.EventID::cppID(), and Types.LuminosityBlockID::cppID().

224 {
225  // nothing to do here?
226 }
void ApeSettingAlgorithm::terminate ( const edm::EventSetup iSetup)
overridevirtual

Call at end of job.

Implements AlignmentAlgorithmBase.

Definition at line 186 of file ApeSettingAlgorithm.cc.

References AlignableNavigator::alignableFromDetId(), AlignableTracker::alignmentErrors(), edm::ParameterSet::getUntrackedParameter(), i, j, gen::k, AlignmentErrors::m_alignError, saveApeToAscii_, saveComposites_, saveLocalNotGlobal_, AlCaHLTBitMon_QueryRunRegistry::string, theAlignableNavigator, theConfig, theTracker, TkRotation< T >::xx(), TkRotation< T >::xy(), TkRotation< T >::xz(), TkRotation< T >::yx(), TkRotation< T >::yy(), TkRotation< T >::yz(), TkRotation< T >::zx(), TkRotation< T >::zy(), and TkRotation< T >::zz().

187 {
188  if (saveApeToAscii_)
190  int theSize=aliErr->m_alignError.size();
191  std::ofstream apeSaveFile(theConfig.getUntrackedParameter<std::string>("apeASCIISaveFile").c_str()); //requires <fstream>
192  for (int i=0; i < theSize; ++i)
193  { int id= aliErr->m_alignError[i].rawId();
195  if (alidet && ((alidet->components().size()<1) || saveComposites_))
196  { apeSaveFile<<id;
197  CLHEP::HepSymMatrix sm = aliErr->m_alignError[i].matrix();
199  { align::RotationType rt=alidet->globalRotation();
200  AlgebraicMatrix am(3,3);
201  am[0][0]=rt.xx(); am[0][1]=rt.xy(); am[0][2]=rt.xz();
202  am[1][0]=rt.yx(); am[1][1]=rt.yy(); am[1][2]=rt.yz();
203  am[2][0]=rt.zx(); am[2][1]=rt.zy(); am[2][2]=rt.zz();
204  sm=sm.similarity(am); //symmetric matrix
205  } //transform to local
206  for (int j=0; j < 3; ++j)
207  for (int k=0; k <= j; ++k)
208  apeSaveFile<<" "<<sm[j][k]; //always write full matrix
209 
210  apeSaveFile<<std::endl;
211  }
212  }
213  delete aliErr;
214  apeSaveFile.close();
215  }
216  // clean up at end: // FIXME: should we delete here or in destructor?
217  delete theAlignableNavigator;
219 }
T xx() const
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
AlignableTracker * theTracker
std::vector< AlignTransformError > m_alignError
T yx() const
edm::ParameterSet theConfig
T zx() const
T xy() const
T zz() const
CLHEP::HepMatrix AlgebraicMatrix
AlignmentErrors * alignmentErrors() const
Return alignment errors, sorted by DetId.
T zy() const
AlignableNavigator * theAlignableNavigator
int j
Definition: DBlmapReader.cc:9
T yy() const
int k[5][pyjets_maxn]
Definition: DetId.h:18
T xz() const
AlignableDetOrUnitPtr alignableFromDetId(const DetId &detid)
Returns AlignableDetOrUnitPtr corresponding to given DetId.
T yz() const

Member Data Documentation

bool ApeSettingAlgorithm::readApeFromAscii_
private

Definition at line 80 of file ApeSettingAlgorithm.cc.

Referenced by ApeSettingAlgorithm(), and initialize().

bool ApeSettingAlgorithm::readFullLocalMatrix_
private

Definition at line 80 of file ApeSettingAlgorithm.cc.

Referenced by ApeSettingAlgorithm(), and initialize().

bool ApeSettingAlgorithm::readLocalNotGlobal_
private

Definition at line 81 of file ApeSettingAlgorithm.cc.

Referenced by ApeSettingAlgorithm(), and initialize().

bool ApeSettingAlgorithm::saveApeToAscii_
private

Definition at line 80 of file ApeSettingAlgorithm.cc.

Referenced by ApeSettingAlgorithm(), and terminate().

bool ApeSettingAlgorithm::saveComposites_
private

Definition at line 82 of file ApeSettingAlgorithm.cc.

Referenced by ApeSettingAlgorithm(), and terminate().

bool ApeSettingAlgorithm::saveLocalNotGlobal_
private

Definition at line 81 of file ApeSettingAlgorithm.cc.

Referenced by ApeSettingAlgorithm(), and terminate().

bool ApeSettingAlgorithm::setComposites_
private

Definition at line 82 of file ApeSettingAlgorithm.cc.

Referenced by ApeSettingAlgorithm(), and initialize().

AlignableNavigator* ApeSettingAlgorithm::theAlignableNavigator
private

Definition at line 78 of file ApeSettingAlgorithm.cc.

Referenced by initialize(), terminate(), and ~ApeSettingAlgorithm().

edm::ParameterSet ApeSettingAlgorithm::theConfig
private

Definition at line 77 of file ApeSettingAlgorithm.cc.

Referenced by ApeSettingAlgorithm(), initialize(), and terminate().

AlignableTracker* ApeSettingAlgorithm::theTracker
private

Definition at line 79 of file ApeSettingAlgorithm.cc.

Referenced by initialize(), and terminate().