CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
trklet::CleanTrackMemory Class Reference

#include <CleanTrackMemory.h>

Inheritance diagram for trklet::CleanTrackMemory:
trklet::MemoryBase

Public Member Functions

void addTrack (Tracklet *tracklet)
 
void clean () override
 
 CleanTrackMemory (std::string name, Settings const &settings, unsigned int iSector, double phimin, double phimax)
 
unsigned int nTracks () const
 
void writeCT (bool first)
 
 ~CleanTrackMemory () override=default
 
- Public Member Functions inherited from trklet::MemoryBase
void findAndReplaceAll (std::string &data, std::string toSearch, std::string replaceStr)
 
std::string getLastPartOfName () const
 
std::string const & getName () const
 
unsigned int initLayerDisk (unsigned int pos)
 
void initLayerDisk (unsigned int pos, int &layer, int &disk)
 
void initSpecialSeeding (unsigned int pos, bool &overlap, bool &extra, bool &extended)
 
 MemoryBase (std::string name, Settings const &settings, unsigned int iSector)
 
void openFile (bool first, std::string dirName, std::string filebase)
 
virtual ~MemoryBase ()=default
 

Private Attributes

double phimax_
 
double phimin_
 
std::vector< Tracklet * > tracks_
 

Additional Inherited Members

- Static Public Member Functions inherited from trklet::MemoryBase
static size_t find_nth (const std::string &haystack, size_t pos, const std::string &needle, size_t nth)
 
- Protected Attributes inherited from trklet::MemoryBase
int bx_
 
int event_
 
unsigned int iSector_
 
std::string name_
 
std::ofstream out_
 
Settings const & settings_
 

Detailed Description

Definition at line 13 of file CleanTrackMemory.h.

Constructor & Destructor Documentation

◆ CleanTrackMemory()

CleanTrackMemory::CleanTrackMemory ( std::string  name,
Settings const &  settings,
unsigned int  iSector,
double  phimin,
double  phimax 
)

Definition at line 10 of file CleanTrackMemory.cc.

12  : MemoryBase(name, settings, iSector) {
13  phimin_ = phimin;
14  phimax_ = phimax;
15 }

References phimax, phimax_, phimin, and phimin_.

◆ ~CleanTrackMemory()

trklet::CleanTrackMemory::~CleanTrackMemory ( )
overridedefault

Member Function Documentation

◆ addTrack()

void trklet::CleanTrackMemory::addTrack ( Tracklet tracklet)
inline

Definition at line 19 of file CleanTrackMemory.h.

19 { tracks_.push_back(tracklet); }

References tracks_.

◆ clean()

void trklet::CleanTrackMemory::clean ( )
inlineoverridevirtual

Implements trklet::MemoryBase.

Definition at line 23 of file CleanTrackMemory.h.

23 { tracks_.clear(); }

References tracks_.

◆ nTracks()

unsigned int trklet::CleanTrackMemory::nTracks ( ) const
inline

Definition at line 21 of file CleanTrackMemory.h.

21 { return tracks_.size(); }

References tracks_.

◆ writeCT()

void CleanTrackMemory::writeCT ( bool  first)

Definition at line 17 of file CleanTrackMemory.cc.

17  {
18  const string dirCT = settings_.memPath() + "CleanTrack/";
19 
20  std::ostringstream oss;
21  oss << dirCT << "CleanTrack_" << getName() << "_" << std::setfill('0') << std::setw(2) << (iSector_ + 1) << ".dat";
22  auto const& fname = oss.str();
23 
24  if (first) {
25  bx_ = 0;
26  event_ = 1;
27 
28  if (not std::filesystem::exists(dirCT)) {
29  int fail = system((string("mkdir -p ") + dirCT).c_str());
30  if (fail)
31  throw cms::Exception("BadDir") << __FILE__ << " " << __LINE__ << " could not create directory " << dirCT;
32  }
33  out_.open(fname);
34  if (out_.fail())
35  throw cms::Exception("BadFile") << __FILE__ << " " << __LINE__ << " could not create file " << fname;
36 
37  } else
38  out_.open(fname, std::ofstream::app);
39 
40  out_ << "BX = " << (bitset<3>)bx_ << " Event : " << event_ << endl;
41 
42  for (unsigned int j = 0; j < tracks_.size(); j++) {
43  out_ << "0x";
44  out_ << std::setfill('0') << std::setw(2);
45  out_ << hex << j << dec << " ";
46  out_ << tracks_[j]->trackfitstr() << " " << trklet::hexFormat(tracks_[j]->trackfitstr());
47  out_ << "\n";
48  }
49  out_.close();
50 
51  // --------------------------------------------------------------
52  // print separately ALL cleaned tracks in single file
53  if (settings_.writeMonitorData("CT")) {
54  std::string fnameAll = "CleanTracksAll.dat";
55  if (first && getName() == "CT_L1L2" && iSector_ == 0)
56  out_.open(fnameAll);
57  else
58  out_.open(fnameAll, std::ofstream::app);
59 
60  if (!tracks_.empty())
61  out_ << "BX= " << (bitset<3>)bx_ << " event= " << event_ << " seed= " << getName()
62  << " phisector= " << iSector_ + 1 << endl;
63 
64  for (unsigned int j = 0; j < tracks_.size(); j++) {
65  if (j < 16)
66  out_ << "0";
67  out_ << hex << j << dec << " ";
68  out_ << tracks_[j]->trackfitstr();
69  out_ << "\n";
70  }
71  out_.close();
72  }
73  // --------------------------------------------------------------
74 
75  bx_++;
76  event_++;
77  if (bx_ > 7)
78  bx_ = 0;
79 }

References trklet::MemoryBase::bx_, TauDecayModes::dec, trklet::MemoryBase::event_, Exception, first, alignmentValidation::fname, trklet::MemoryBase::getName(), trklet::hexFormat(), trklet::MemoryBase::iSector_, dqmiolumiharvest::j, trklet::Settings::memPath(), trklet::MemoryBase::out_, trklet::MemoryBase::settings_, AlCaHLTBitMon_QueryRunRegistry::string, tracks_, and trklet::Settings::writeMonitorData().

Member Data Documentation

◆ phimax_

double trklet::CleanTrackMemory::phimax_
private

Definition at line 29 of file CleanTrackMemory.h.

Referenced by CleanTrackMemory().

◆ phimin_

double trklet::CleanTrackMemory::phimin_
private

Definition at line 28 of file CleanTrackMemory.h.

Referenced by CleanTrackMemory().

◆ tracks_

std::vector<Tracklet*> trklet::CleanTrackMemory::tracks_
private

Definition at line 30 of file CleanTrackMemory.h.

Referenced by addTrack(), clean(), nTracks(), and writeCT().

trklet::MemoryBase::settings_
Settings const & settings_
Definition: MemoryBase.h:50
phimin
float phimin
Definition: ReggeGribovPartonMCHadronizer.h:107
trklet::Settings::memPath
std::string const & memPath() const
Definition: Settings.h:169
trklet::MemoryBase::event_
int event_
Definition: MemoryBase.h:48
trklet::MemoryBase::out_
std::ofstream out_
Definition: MemoryBase.h:46
trklet::MemoryBase::bx_
int bx_
Definition: MemoryBase.h:47
trklet::MemoryBase::getName
std::string const & getName() const
Definition: MemoryBase.h:19
trklet::CleanTrackMemory::phimin_
double phimin_
Definition: CleanTrackMemory.h:28
first
auto first
Definition: CAHitNtupletGeneratorKernelsImpl.h:112
trklet::CleanTrackMemory::phimax_
double phimax_
Definition: CleanTrackMemory.h:29
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
trklet::CleanTrackMemory::tracks_
std::vector< Tracklet * > tracks_
Definition: CleanTrackMemory.h:30
trklet::MemoryBase::MemoryBase
MemoryBase(std::string name, Settings const &settings, unsigned int iSector)
Definition: MemoryBase.cc:12
phimax
float phimax
Definition: ReggeGribovPartonMCHadronizer.h:106
alignmentValidation.fname
string fname
main script
Definition: alignmentValidation.py:959
trklet::Settings::writeMonitorData
bool writeMonitorData(std::string module) const
Definition: Settings.h:96
Exception
Definition: hltDiff.cc:245
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
trklet::hexFormat
std::string hexFormat(const std::string &binary)
Definition: Util.h:15
cms::Exception
Definition: Exception.h:70
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
TauDecayModes.dec
dec
Definition: TauDecayModes.py:143
trklet::MemoryBase::iSector_
unsigned int iSector_
Definition: MemoryBase.h:44