test
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 Types | Private Member Functions | Private Attributes
TrackerGeometryIntoNtuples Class Reference

#include <TrackerGeometryIntoNtuples.cc>

Inheritance diagram for TrackerGeometryIntoNtuples:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 TrackerGeometryIntoNtuples (const edm::ParameterSet &)
 
 ~TrackerGeometryIntoNtuples ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Types

enum  { kMaxNumPar = 20 }
 

Private Member Functions

void addBranches ()
 
virtual void analyze (const edm::Event &iEvent, const edm::EventSetup &iSetup) override
 

Private Attributes

Float_t deformationValues_ [kMaxNumPar]
 
double m_alpha
 
double m_beta
 
double m_d1
 
double m_d2
 
double m_d3
 
int m_dNpar
 
int m_dtype
 
TFile * m_file
 
double m_gamma
 
std::string m_outputFile
 
std::string m_outputTreename
 
uint32_t m_rawid
 
int m_subdetid
 
TTree * m_tree
 
TTree * m_treeDeformations
 
TTree * m_treeErrors
 
double m_x
 
double m_xx
 
double m_xy
 
double m_xz
 
double m_y
 
double m_yy
 
double m_yz
 
double m_z
 
double m_zz
 
std::vector< double > * mp_dpar
 
UInt_t numDeformationValues_
 
AlignableTrackertheCurrentTracker
 
const edm::ParameterSet theParameterSet
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- 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::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Description: Takes a set of alignment constants and turns them into a ROOT file

Implementation: <Notes on="" implementation>="">

Definition at line 72 of file TrackerGeometryIntoNtuples.cc.

Member Enumeration Documentation

anonymous enum
private
Enumerator
kMaxNumPar 

Definition at line 101 of file TrackerGeometryIntoNtuples.cc.

101 {kMaxNumPar = 20}; // slighly above 'two bowed surfaces' limit

Constructor & Destructor Documentation

TrackerGeometryIntoNtuples::TrackerGeometryIntoNtuples ( const edm::ParameterSet iConfig)
explicit

Definition at line 123 of file TrackerGeometryIntoNtuples.cc.

References edm::ParameterSet::getUntrackedParameter(), m_file, m_outputFile, m_outputTreename, m_tree, m_treeDeformations, m_treeErrors, and AlCaHLTBitMon_QueryRunRegistry::string.

123  :
124  theParameterSet( iConfig ),
126  m_rawid(0),
127  m_x(0.), m_y(0.), m_z(0.),
128  m_alpha(0.), m_beta(0.), m_gamma(0.),
129  m_subdetid(0),
130  m_xx(0.), m_xy(0.), m_yy(0.), m_xz(0.), m_yz(0.), m_zz(0.),
131  m_dNpar(0),
132  m_d1(0.), m_d2(0.), m_d3(0.),
133  m_dtype(0),
134  mp_dpar(0)
135 {
136  m_outputFile = iConfig.getUntrackedParameter< std::string > ("outputFile");
137  m_outputTreename = iConfig.getUntrackedParameter< std::string > ("outputTreename");
138  m_file = new TFile(m_outputFile.c_str(),"RECREATE");
139  m_tree = new TTree(m_outputTreename.c_str(),m_outputTreename.c_str());
140  m_treeDeformations = new TTree("alignTreeDeformations","alignTreeDeformations");
141  //char errorTreeName[256];
142  //snprintf(errorTreeName, sizeof(errorTreeName), "%sErrors", m_outputTreename);
143  //m_treeErrors = new TTree(errorTreeName,errorTreeName);
144  m_treeErrors = new TTree("alignTreeErrors","alignTreeErrors");
145 
146 }
T getUntrackedParameter(std::string const &, T const &) const
const edm::ParameterSet theParameterSet
TrackerGeometryIntoNtuples::~TrackerGeometryIntoNtuples ( )

Definition at line 149 of file TrackerGeometryIntoNtuples.cc.

References theCurrentTracker.

150 {
151  delete theCurrentTracker;
152 }

Member Function Documentation

void TrackerGeometryIntoNtuples::addBranches ( )
private

Definition at line 287 of file TrackerGeometryIntoNtuples.cc.

References m_alpha, m_beta, m_dNpar, m_dtype, m_gamma, m_rawid, m_subdetid, m_tree, m_treeDeformations, m_treeErrors, m_x, m_xx, m_xy, m_xz, m_y, m_yy, m_yz, m_z, m_zz, and mp_dpar.

Referenced by Vispa.Plugins.EdmBrowser.EventContentDataAccessor.EventContentDataAccessor::addContentFile(), and analyze().

287  {
288 
289  m_tree->Branch("rawid", &m_rawid, "rawid/I");
290  m_tree->Branch("x", &m_x, "x/D");
291  m_tree->Branch("y", &m_y, "y/D");
292  m_tree->Branch("z", &m_z, "z/D");
293  m_tree->Branch("alpha", &m_alpha, "alpha/D");
294  m_tree->Branch("beta", &m_beta, "beta/D");
295  m_tree->Branch("gamma", &m_gamma, "gamma/D");
296 
297  m_treeDeformations->Branch("irawid", &m_rawid, "irawid/I");
298  m_treeDeformations->Branch("subdetid", &m_subdetid, "subdetid/I");
299  m_treeDeformations->Branch("dNpar", &m_dNpar, "dNpar/I");
300  //m_treeDeformations->Branch("d1", &m_d1, "d1/D");
301  //m_treeDeformations->Branch("d2", &m_d2, "d2/D");
302  //m_treeDeformations->Branch("d3", &m_d3, "d3/D");
303  m_treeDeformations->Branch("dtype", &m_dtype);
304  m_treeDeformations->Branch("dpar", "std::vector<double>", &mp_dpar);
305 
306  m_treeErrors->Branch("rawid", &m_rawid, "rawid/I");
307  m_treeErrors->Branch("subdetid", &m_subdetid, "subdetid/I");
308  m_treeErrors->Branch("xx", &m_xx, "xx/D");
309  m_treeErrors->Branch("yy", &m_yy, "yy/D");
310  m_treeErrors->Branch("zz", &m_zz, "zz/D");
311  m_treeErrors->Branch("xy", &m_xy, "xy/D");
312  m_treeErrors->Branch("xz", &m_xz, "xz/D");
313  m_treeErrors->Branch("yz", &m_yz, "yz/D");
314 
315 
316  //m_tree->Branch("NumDeform", &numDeformationValues_, "NumDeform/i");
317  //m_tree->Branch("DeformValues", deformationValues_, "DeformValues[NumDeform]/F");
318 
319 }
void TrackerGeometryIntoNtuples::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 160 of file TrackerGeometryIntoNtuples.cc.

References addBranches(), GeometryAligner::applyAlignments(), GeometryAligner::attachSurfaceDeformations(), TrackerGeomBuilderFromGeometricDet::build(), align::DetectorGlobalPosition(), cond::rpcobgas::detid, TrackerGeometry::detUnits(), edm::EventSetup::get(), edm::eventsetup::EventSetupRecord::get(), i, Alignments::m_align, m_alpha, m_beta, m_d1, m_d2, m_d3, m_dNpar, m_dtype, m_file, m_gamma, m_rawid, m_subdetid, m_tree, m_treeDeformations, m_treeErrors, m_x, m_xx, m_xy, m_xz, m_y, m_yy, m_yz, m_z, m_zz, mp_dpar, Parameters::parameters, edm::ESHandle< class >::product(), DetId::rawId(), idealTransformation::rotation, DetId::subdetId(), theCurrentTracker, theParameterSet, and DetId::Tracker.

161 {
162  // retrieve tracker topology from geometry
163  edm::ESHandle<TrackerTopology> tTopoHandle;
164  iSetup.get<IdealGeometryRecord>().get(tTopoHandle);
165  const TrackerTopology* const tTopo = tTopoHandle.product();
166 
167 
168  edm::LogInfo("beginJob") << "Begin Job" << std::endl;
169 
170  //accessing the initial geometry
171  edm::ESHandle<GeometricDet> theGeometricDet;
172  iSetup.get<IdealGeometryRecord>().get(theGeometricDet);
173  TrackerGeomBuilderFromGeometricDet trackerBuilder;
174  //currernt tracker
175  TrackerGeometry* theCurTracker = trackerBuilder.build(&*theGeometricDet,theParameterSet);
176 
177  //build the tracker
178  edm::ESHandle<Alignments> alignments;
179  edm::ESHandle<AlignmentErrors> alignmentErrors;
181 
182  iSetup.get<TrackerAlignmentRcd>().get(alignments);
183  iSetup.get<TrackerAlignmentErrorRcd>().get(alignmentErrors);
184  iSetup.get<TrackerSurfaceDeformationRcd>().get(surfaceDeformations);
185 
186  //apply the latest alignments
187  edm::ESHandle<Alignments> globalPositionRcd;
188  iSetup.get<TrackerDigiGeometryRecord>().getRecord<GlobalPositionRcd>().get(globalPositionRcd);
189  GeometryAligner aligner;
190  aligner.applyAlignments<TrackerGeometry>( &(*theCurTracker), &(*alignments), &(*alignmentErrors),
191  align::DetectorGlobalPosition(*globalPositionRcd, DetId(DetId::Tracker)));
192  aligner.attachSurfaceDeformations<TrackerGeometry>( &(*theCurTracker), &(*surfaceDeformations)) ;
193 
194 
195  theCurrentTracker = new AlignableTracker(&(*theCurTracker), tTopo);
196 
197  Alignments* theAlignments = theCurrentTracker->alignments();
198  //AlignmentErrors* theAlignmentErrors = theCurrentTracker->alignmentErrors();
199 
200  //alignments
201  addBranches();
202  for (std::vector<AlignTransform>::const_iterator i = theAlignments->m_align.begin(); i != theAlignments->m_align.end(); ++i){
203 
204  m_rawid = i->rawId();
205  CLHEP::Hep3Vector translation = i->translation();
206  m_x = translation.x();
207  m_y = translation.y();
208  m_z = translation.z();
209 
210 
211  CLHEP::HepRotation rotation = i->rotation();
212  m_alpha = rotation.getPhi();
213  m_beta = rotation.getTheta();
214  m_gamma = rotation.getPsi();
215  m_tree->Fill();
216 
217  //DetId detid(m_rawid);
218  //if (detid.subdetId() > 2){
219  //
220  //std::cout << " panel: " << tTopo->pxfPanel( m_rawid ) << ", module: " << tTopo->pxfModule( m_rawid ) << std::endl;
221  //if ((tTopo->pxfPanel( m_rawid ) == 1) && (tTopo->pxfModule( m_rawid ) == 4)) std::cout << m_rawid << ", ";
222  //std::cout << m_rawid << std::setprecision(9) << " " << m_x << " " << m_y << " " << m_z;
223  //std::cout << std::setprecision(9) << " " << m_alpha << " " << m_beta << " " << m_gamma << std::endl;
224  //}
225 
226  }
227 
228  delete theAlignments;
229 
230  std::vector<AlignTransformError> alignErrors = alignmentErrors->m_alignError;
231  for (std::vector<AlignTransformError>::const_iterator i = alignErrors.begin(); i != alignErrors.end(); ++i){
232 
233  m_rawid = i->rawId();
234  CLHEP::HepSymMatrix errMatrix = i->matrix();
236  m_subdetid = detid.subdetId();
237  m_xx = errMatrix[0][0];
238  m_xy = errMatrix[0][1];
239  m_xz = errMatrix[0][2];
240  m_yy = errMatrix[1][1];
241  m_yz = errMatrix[1][2];
242  m_zz = errMatrix[2][2];
243  m_treeErrors->Fill();
244  }
245 
246  // Get GeomDetUnits for the current tracker
247  auto const & detUnits = theCurTracker->detUnits() ;
248  int detUnit(0) ;
249  //\\for (unsigned int iDet = 0; iDet < detUnits.size(); ++iDet) {
250  for (auto iunit = detUnits.begin(); iunit != detUnits.end(); ++iunit) {
251 
252  DetId detid = (*iunit)->geographicalId();
253  m_rawid = detid.rawId() ;
254  m_subdetid = detid.subdetId();
255 
256  ++detUnit ;
257  //\\GeomDetUnit* geomDetUnit = detUnits.at(iDet) ;
258  auto geomDetUnit = *iunit ;
259 
260  // Get SurfaceDeformation for this GeomDetUnit
261  if ( geomDetUnit->surfaceDeformation() ) {
262  std::vector<double> surfaceDeformParams = (geomDetUnit->surfaceDeformation())->parameters() ;
263  //edm::LogInfo("surfaceDeformParamsSize") << " surfaceDeformParams size = " << surfaceDeformParams.size() << std::endl ;
264  m_dNpar = surfaceDeformParams.size() ;
265  m_dtype = (geomDetUnit->surfaceDeformation())->type() ;
266  m_d1 = surfaceDeformParams.at(0) ;
267  m_d2 = surfaceDeformParams.at(1) ;
268  m_d3 = surfaceDeformParams.at(2) ;
269  mp_dpar->clear() ;
270  for (std::vector<double>::const_iterator it = surfaceDeformParams.begin(); it != surfaceDeformParams.end(); ++it) {
271  mp_dpar->push_back((*it)) ;
272  //edm::LogInfo("surfaceDeformParamsContent") << " surfaceDeformParam = " << (*it) << std::endl ;
273  }
274  m_treeDeformations->Fill() ;
275  }
276  }
277 
278  //write out
279  m_file->cd();
280  m_tree->Write();
281  m_treeDeformations->Write();
282  m_treeErrors->Write();
283  m_file->Close();
284 }
type
Definition: HCALResponse.h:21
int i
Definition: DBlmapReader.cc:9
dictionary parameters
Definition: Parameters.py:2
Class to update a given geometry with a set of alignments.
const edm::ParameterSet theParameterSet
TrackerGeometry * build(const GeometricDet *gd, const edm::ParameterSet &pSet)
std::vector< AlignTransform > m_align
Definition: Alignments.h:19
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
virtual const DetUnitContainer & detUnits() const
Returm a vector of all GeomDetUnit.
void attachSurfaceDeformations(C *geometry, const AlignmentSurfaceDeformations *surfaceDeformations)
void get(HolderT &iHolder) const
void applyAlignments(C *geometry, const Alignments *alignments, const AlignmentErrors *alignmentErrors, const AlignTransform &globalCoordinates)
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
Definition: DetId.h:18
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
const AlignTransform & DetectorGlobalPosition(const Alignments &allGlobals, const DetId &id)

Member Data Documentation

Float_t TrackerGeometryIntoNtuples::deformationValues_[kMaxNumPar]
private

Definition at line 102 of file TrackerGeometryIntoNtuples.cc.

double TrackerGeometryIntoNtuples::m_alpha
private

Definition at line 90 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_beta
private

Definition at line 90 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_d1
private

Definition at line 94 of file TrackerGeometryIntoNtuples.cc.

Referenced by analyze().

double TrackerGeometryIntoNtuples::m_d2
private

Definition at line 94 of file TrackerGeometryIntoNtuples.cc.

Referenced by analyze().

double TrackerGeometryIntoNtuples::m_d3
private

Definition at line 94 of file TrackerGeometryIntoNtuples.cc.

Referenced by analyze().

int TrackerGeometryIntoNtuples::m_dNpar
private

Definition at line 93 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

int TrackerGeometryIntoNtuples::m_dtype
private

Definition at line 95 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

TFile* TrackerGeometryIntoNtuples::m_file
private

Definition at line 109 of file TrackerGeometryIntoNtuples.cc.

Referenced by analyze(), and TrackerGeometryIntoNtuples().

double TrackerGeometryIntoNtuples::m_gamma
private

Definition at line 90 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

std::string TrackerGeometryIntoNtuples::m_outputFile
private

Definition at line 107 of file TrackerGeometryIntoNtuples.cc.

Referenced by TrackerGeometryIntoNtuples().

std::string TrackerGeometryIntoNtuples::m_outputTreename
private

Definition at line 108 of file TrackerGeometryIntoNtuples.cc.

Referenced by TrackerGeometryIntoNtuples().

uint32_t TrackerGeometryIntoNtuples::m_rawid
private

Definition at line 88 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

int TrackerGeometryIntoNtuples::m_subdetid
private

Definition at line 91 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

TTree* TrackerGeometryIntoNtuples::m_tree
private

Definition at line 104 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), analyze(), and TrackerGeometryIntoNtuples().

TTree* TrackerGeometryIntoNtuples::m_treeDeformations
private

Definition at line 105 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), analyze(), and TrackerGeometryIntoNtuples().

TTree* TrackerGeometryIntoNtuples::m_treeErrors
private

Definition at line 106 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), analyze(), and TrackerGeometryIntoNtuples().

double TrackerGeometryIntoNtuples::m_x
private

Definition at line 89 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_xx
private

Definition at line 92 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_xy
private

Definition at line 92 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_xz
private

Definition at line 92 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_y
private

Definition at line 89 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_yy
private

Definition at line 92 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_yz
private

Definition at line 92 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_z
private

Definition at line 89 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

double TrackerGeometryIntoNtuples::m_zz
private

Definition at line 92 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

std::vector<double>* TrackerGeometryIntoNtuples::mp_dpar
private

Definition at line 97 of file TrackerGeometryIntoNtuples.cc.

Referenced by addBranches(), and analyze().

UInt_t TrackerGeometryIntoNtuples::numDeformationValues_
private

Definition at line 100 of file TrackerGeometryIntoNtuples.cc.

AlignableTracker* TrackerGeometryIntoNtuples::theCurrentTracker
private

Definition at line 86 of file TrackerGeometryIntoNtuples.cc.

Referenced by analyze(), and ~TrackerGeometryIntoNtuples().

const edm::ParameterSet TrackerGeometryIntoNtuples::theParameterSet
private

Definition at line 84 of file TrackerGeometryIntoNtuples.cc.

Referenced by analyze().