CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AlignmentMonitorSurvey.cc
Go to the documentation of this file.
4 
6 
8  :AlignmentMonitorBase(cfg, "AlignmentMonitorSurvey")
9 {
10  static AlignableObjectId dummy;
11 
12  const std::vector<std::string>& levels = cfg.getUntrackedParameter< std::vector<std::string> >("surveyResiduals");
13 
14  for (unsigned int l = 0; l < levels.size(); ++l)
15  {
16  theLevels.push_back( dummy.nameToType(levels[l]) );
17  }
18 }
19 
21 {
22  align::ID id;
24 
25  double par[6]; // survey residual
26 
27  TTree* tree = directory("/iterN/")->make<TTree>("survey", "");
28 
29  tree->Branch("id" , &id , "id/i");
30  tree->Branch("level", &level, "level/I");
31  tree->Branch("par" , &par , "par[6]/D");
32 
33  const align::Alignables& all = pStore()->alignables();
34 
35  const unsigned int nAlignable = all.size();
36 
37  for (unsigned int i = 0; i < nAlignable; ++i)
38  {
39  const Alignable* ali = all[i];
40 
41  id = ali->id();
42 
43  for (unsigned int l = 0; l < theLevels.size(); ++l)
44  {
45  level = theLevels[l];
46 
47  SurveyResidual resid(*ali, level, true);
48  AlgebraicVector resParams = resid.sensorResidual();
49 
50  par[0] = resParams[0];
51  par[1] = resParams[1];
52  par[2] = resParams[2];
53  par[3] = resParams[3];
54  par[4] = resParams[4];
55  par[5] = resParams[5];
56 
57  tree->Fill();
58  }
59  }
60 }
61 
align::ID id() const
Return the ID of Alignable, i.e. DetId of &#39;first&#39; component GeomDet(Unit).
Definition: Alignable.h:180
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
AlignmentParameterStore * pStore()
std::vector< align::StructureType > theLevels
AlignmentMonitorSurvey(const edm::ParameterSet &)
uint32_t ID
Definition: Definitions.h:26
TFileDirectory * directory(std::string dir)
Allows conversion between type and name, and vice-versa.
const align::StructureType nameToType(const std::string &name) const
Convert name to type.
virtual void book()
Book or retrieve histograms; MUST be reimplemented.
CLHEP::HepVector AlgebraicVector
std::vector< Alignable * > Alignables
Definition: Utilities.h:28
AlgebraicVector sensorResidual() const
T * make() const
make new ROOT object
#define DEFINE_EDM_PLUGIN(factory, type, name)
tuple level
Definition: testEve_cfg.py:34
const align::Alignables & alignables(void) const
get all alignables
const double par[8 *NPar][4]