Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PLT To Event Simulation #3087

Merged
merged 5 commits into from Mar 31, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,5 +1,5 @@
#ifndef Forward_PLTSensitiveDetector_h
#define Forward_PLTSensitiveDetector_h
#ifndef Forward_PltSD_h
#define Forward_PltSD_h

// system include files

Expand Down Expand Up @@ -27,17 +27,17 @@ class UpdatablePSimHit;
class G4ProcessTypeEnumerator;
class G4TrackToParticleID;

class PLTSensitiveDetector : public SensitiveTkDetector,
class PltSD : public SensitiveTkDetector,
public Observer<const BeginOfEvent*>,
public Observer<const BeginOfTrack*>,
public Observer<const BeginOfJob*> {

public:

PLTSensitiveDetector(std::string, const DDCompactView &,
PltSD(std::string, const DDCompactView &,
SensitiveDetectorCatalog &,
edm::ParameterSet const &, const SimTrackManager*);
virtual ~PLTSensitiveDetector();
virtual ~PltSD();

virtual bool ProcessHits(G4Step *,G4TouchableHistory *);
virtual uint32_t setDetUnitId(G4Step*);
Expand Down Expand Up @@ -78,4 +78,4 @@ class PLTSensitiveDetector : public SensitiveTkDetector,

};

#endif
#endif
3 changes: 2 additions & 1 deletion SimG4CMS/Forward/plugins/module.cc
Expand Up @@ -5,7 +5,7 @@
#include "SimG4CMS/Forward/interface/CastorTestAnalysis.h"
#include "SimG4CMS/Forward/interface/ZdcTestAnalysis.h"
#include "SimG4CMS/Forward/interface/DoCastorAnalysis.h"
#include "SimG4CMS/Forward/interface/PLTSensitiveDetector.h"
#include "SimG4CMS/Forward/interface/PltSD.h"

#include "SimG4CMS/Forward/interface/BscTest.h"
#include "SimG4CMS/Forward/interface/BscSD.h"
Expand All @@ -23,6 +23,7 @@ typedef ZdcSD ZdcSensitiveDetector;
DEFINE_SENSITIVEDETECTOR(ZdcSensitiveDetector);
typedef BscSD BSCSensitiveDetector;
DEFINE_SENSITIVEDETECTOR(BSCSensitiveDetector);
typedef PltSD PLTSensitiveDetector;
DEFINE_SENSITIVEDETECTOR(PLTSensitiveDetector);
typedef Bcm1fSD BCM1FSensitiveDetector;
DEFINE_SENSITIVEDETECTOR(BCM1FSensitiveDetector);
Expand Down
259 changes: 0 additions & 259 deletions SimG4CMS/Forward/src/PLTSensitiveDetector.cc

This file was deleted.