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
DTSurveyConvert Class Reference

#include <Alignment/DTSurveyConvert/src/DTSurveyConvert.cc>

Inheritance diagram for DTSurveyConvert:
edm::EDAnalyzer

Public Member Functions

 DTSurveyConvert (const edm::ParameterSet &)
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
virtual void endJob (const edm::EventSetup &)
 

Private Attributes

std::string nameChambers_0
 
std::string nameChambers_m1
 
std::string nameChambers_m2
 
std::string nameChambers_p1
 
std::string nameChambers_p2
 
std::string nameWheel_0
 
std::string nameWheel_m1
 
std::string nameWheel_m2
 
std::string nameWheel_p1
 
std::string nameWheel_p2
 
std::string outputFileName
 
bool wheel_0
 
bool wheel_m1
 
bool wheel_m2
 
bool wheel_p1
 
bool wheel_p2
 
std::vector< DTSurvey * > wheelList
 
bool WriteToDB
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- 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
 

Detailed Description

Description: Reads survey information, process it and outputs a text file with results

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

Definition at line 27 of file DTSurveyConvert.h.

Constructor & Destructor Documentation

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

Definition at line 14 of file DTSurveyConvert.cc.

References edm::ParameterSet::getUntrackedParameter(), nameChambers_0, nameChambers_m1, nameChambers_m2, nameChambers_p1, nameChambers_p2, nameWheel_0, nameWheel_m1, nameWheel_m2, nameWheel_p1, nameWheel_p2, outputFileName, wheel_0, wheel_m1, wheel_m2, wheel_p1, wheel_p2, and WriteToDB.

15 {
16  //now do what ever initialization is needed
17  nameWheel_m2 = iConfig.getUntrackedParameter<std::string>("nameWheel_m2");
18  nameWheel_m1 = iConfig.getUntrackedParameter<std::string>("nameWheel_m1");
19  nameWheel_0 = iConfig.getUntrackedParameter<std::string>("nameWheel_0");
20  nameWheel_p1 = iConfig.getUntrackedParameter<std::string>("nameWheel_p1");
21  nameWheel_p2 = iConfig.getUntrackedParameter<std::string>("nameWheel_p2");
22 
23  nameChambers_m2 = iConfig.getUntrackedParameter<std::string>("nameChambers_m2");
24  nameChambers_m1 = iConfig.getUntrackedParameter<std::string>("nameChambers_m1");
25  nameChambers_0 = iConfig.getUntrackedParameter<std::string>("nameChambers_0");
26  nameChambers_p1 = iConfig.getUntrackedParameter<std::string>("nameChambers_p1");
27  nameChambers_p2 = iConfig.getUntrackedParameter<std::string>("nameChambers_p2");
28 
29  wheel_m2 = iConfig.getUntrackedParameter<bool>("wheel_m2");
30  wheel_m1 = iConfig.getUntrackedParameter<bool>("wheel_m1");
31  wheel_0 = iConfig.getUntrackedParameter<bool>("wheel_0");
32  wheel_p1 = iConfig.getUntrackedParameter<bool>("wheel_p1");
33  wheel_p2 = iConfig.getUntrackedParameter<bool>("wheel_p2");
34 
35  outputFileName = iConfig.getUntrackedParameter<std::string>("OutputTextFile");
36  WriteToDB = iConfig.getUntrackedParameter<bool>("writeToDB");
37 
38 }
T getUntrackedParameter(std::string const &, T const &) const
std::string nameWheel_p2
std::string nameChambers_0
std::string nameChambers_p2
std::string nameChambers_p1
std::string nameWheel_m2
std::string nameWheel_p1
std::string outputFileName
std::string nameChambers_m2
std::string nameWheel_0
std::string nameWheel_m1
std::string nameChambers_m1

Member Function Documentation

void DTSurveyConvert::analyze ( const edm::Event ,
const edm::EventSetup iSetup 
)
privatevirtual

Implements edm::EDAnalyzer.

Definition at line 42 of file DTSurveyConvert.cc.

References DTSurvey::CalculateChambers(), edm::EventSetup::get(), nameChambers_0, nameChambers_m1, nameChambers_m2, nameChambers_p1, nameChambers_p2, nameWheel_0, nameWheel_m1, nameWheel_m2, nameWheel_p1, nameWheel_p2, GetRecoTauVFromDQM_MC_cff::outFile, outputFileName, DTSurvey::ReadChambers(), wheel_0, wheel_m1, wheel_m2, wheel_p1, wheel_p2, and wheelList.

43 {
44 
46  iSetup.get<MuonGeometryRecord>().get( pDD );
47 
48  std::ofstream outFile(outputFileName.c_str());
49 
50  if (wheel_m2 == true) {
51  DTSurvey *wheel = new DTSurvey(nameWheel_m2, nameChambers_m2, -2);
52  wheel->ReadChambers(pDD);
53  wheel->CalculateChambers();
54  outFile << *wheel;
55  wheelList.push_back(wheel);
56  }
57  if (wheel_m1 == true) {
58  DTSurvey *wheel = new DTSurvey(nameWheel_m1, nameChambers_m1, -1);
59  wheel->ReadChambers(pDD);
60  wheel->CalculateChambers();
61  outFile << *wheel;
62  wheelList.push_back(wheel);
63  }
64  if (wheel_0 == true) {
65  DTSurvey *wheel = new DTSurvey(nameWheel_0, nameChambers_0, 0);
66  wheel->ReadChambers(pDD);
67  wheel->CalculateChambers();
68  outFile << *wheel;
69  wheelList.push_back(wheel);
70  }
71  if (wheel_p1 == true) {
73  wheel->ReadChambers(pDD);
74  wheel->CalculateChambers();
75  outFile << *wheel;
76  wheelList.push_back(wheel);
77  }
78  if(wheel_p2 == true) {
80  wheel->ReadChambers(pDD);
81  wheel->CalculateChambers();
82  outFile << *wheel;
83  wheelList.push_back(wheel);
84  }
85  outFile.close();
86 }
std::string nameWheel_p2
std::string nameChambers_0
void ReadChambers(edm::ESHandle< DTGeometry >)
Definition: DTSurvey.cc:41
std::string nameChambers_p2
std::string nameChambers_p1
std::string nameWheel_m2
std::string nameWheel_p1
std::string outputFileName
void CalculateChambers()
Definition: DTSurvey.cc:28
std::string nameChambers_m2
const T & get() const
Definition: EventSetup.h:55
std::vector< DTSurvey * > wheelList
std::string nameWheel_0
std::string nameWheel_m1
std::string nameChambers_m1
void DTSurveyConvert::endJob ( const edm::EventSetup eventSetup)
privatevirtual

Definition at line 90 of file DTSurveyConvert.cc.

References alpha, beta, outputFileName, MuonAlignment::saveToDB(), and WriteToDB.

90  {
91  if(WriteToDB == true) {
92  // Instantiate the helper class
93  MuonAlignment align( eventSetup );
94  std::ifstream inFile(outputFileName.c_str());
95  while(!inFile.eof()) {
96  float dx, dy, dz, sigma_dx, sigma_dy, sigma_dz;
97  float alpha, beta, gamma, sigma_alpha, sigma_beta, sigma_gamma;
98  inFile >> dx >> sigma_dx >> dy >> sigma_dy >> dz >> sigma_dz
99  >> alpha >> sigma_alpha >> beta >> sigma_beta >> gamma >> sigma_gamma;
100  if(inFile.eof()) break;
101  std::vector<float> displacement;
102  displacement.push_back(dx);
103  displacement.push_back(dy);
104  displacement.push_back(dz);
105  displacement.push_back(-alpha);
106  displacement.push_back(-beta);
107  displacement.push_back(-gamma);
108  }
109  inFile.close();
110  align.saveToDB();
111  }
112 }
const double beta
float alpha
Definition: AMPTWrapper.h:95
std::string outputFileName

Member Data Documentation

std::string DTSurveyConvert::nameChambers_0
private

Definition at line 43 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameChambers_m1
private

Definition at line 42 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameChambers_m2
private

Definition at line 41 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameChambers_p1
private

Definition at line 44 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameChambers_p2
private

Definition at line 45 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameWheel_0
private

Definition at line 38 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameWheel_m1
private

Definition at line 37 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameWheel_m2
private

Definition at line 36 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameWheel_p1
private

Definition at line 39 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::nameWheel_p2
private

Definition at line 40 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::string DTSurveyConvert::outputFileName
private

Definition at line 46 of file DTSurveyConvert.h.

Referenced by analyze(), DTSurveyConvert(), and endJob().

bool DTSurveyConvert::wheel_0
private

Definition at line 49 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

bool DTSurveyConvert::wheel_m1
private

Definition at line 48 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

bool DTSurveyConvert::wheel_m2
private

Definition at line 47 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

bool DTSurveyConvert::wheel_p1
private

Definition at line 50 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

bool DTSurveyConvert::wheel_p2
private

Definition at line 51 of file DTSurveyConvert.h.

Referenced by analyze(), and DTSurveyConvert().

std::vector<DTSurvey *> DTSurveyConvert::wheelList
private

Definition at line 35 of file DTSurveyConvert.h.

Referenced by analyze().

bool DTSurveyConvert::WriteToDB
private

Definition at line 52 of file DTSurveyConvert.h.

Referenced by DTSurveyConvert(), and endJob().