CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Private Attributes
AsciiNeutronWriter Class Reference

#include <AsciiNeutronWriter.h>

Inheritance diagram for AsciiNeutronWriter:
NeutronWriter

Public Member Functions

 AsciiNeutronWriter (std::string fileNameBase)
 
 ~AsciiNeutronWriter () override
 
- Public Member Functions inherited from NeutronWriter
virtual void beginEvent (edm::Event &e, const edm::EventSetup &es)
 
virtual void endEvent ()
 
virtual void initialize (int detType)
 
virtual ~NeutronWriter ()
 

Protected Member Functions

void writeCluster (int chamberType, const edm::PSimHitContainer &hits) override
 writes out a list of SimHits. More...
 

Private Attributes

std::string theFileNameBase
 

Detailed Description

This writes the fields of a SimHit into an ASCII file, which can be read out later to add neutron hits to a muon chamber

Definition at line 11 of file AsciiNeutronWriter.h.

Constructor & Destructor Documentation

◆ AsciiNeutronWriter()

AsciiNeutronWriter::AsciiNeutronWriter ( std::string  fileNameBase)

Definition at line 8 of file AsciiNeutronWriter.cc.

8 : theFileNameBase(fileNameBase) {}
std::string theFileNameBase

◆ ~AsciiNeutronWriter()

AsciiNeutronWriter::~AsciiNeutronWriter ( )
override

Definition at line 10 of file AsciiNeutronWriter.cc.

10 {}

Member Function Documentation

◆ writeCluster()

void AsciiNeutronWriter::writeCluster ( int  detType,
const edm::PSimHitContainer simHits 
)
overrideprotectedvirtual

writes out a list of SimHits.

Implements NeutronWriter.

Definition at line 12 of file AsciiNeutronWriter.cc.

References nano_mu_digi_cff::chamberType, h, hfClusterShapes_cfi::hits, mps_fire::i, LogDebug, alignCSCRings::s, and theFileNameBase.

12  {
13  // open the correct file
14  stringstream s;
16  LogDebug("NeutronWriter") << "opening " << s.str();
17  ofstream os;
18  os.open(s.str().c_str(), ofstream::app);
19  os << hits.size() << endl;
20  for (size_t i = 0; i < hits.size(); ++i) {
21  const PSimHit& h = hits[i];
22  os << h.entryPoint().x() << " " << h.entryPoint().y() << " " << h.entryPoint().z() << " " << h.exitPoint().x()
23  << " " << h.exitPoint().y() << " " << h.exitPoint().z() << " " << h.pabs() << " "
24  << " " << h.timeOfFlight() << " " << h.energyLoss() << " " << h.particleType() << " " << h.detUnitId() << " "
25  << h.trackId() << " " << h.momentumAtEntry().theta() << " " << h.momentumAtEntry().phi() << endl;
26  }
27 }
std::string theFileNameBase
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
#define LogDebug(id)

Member Data Documentation

◆ theFileNameBase

std::string AsciiNeutronWriter::theFileNameBase
private

Definition at line 20 of file AsciiNeutronWriter.h.

Referenced by writeCluster().