112 lines
4.3 KiB
C++
112 lines
4.3 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// File: CCalG4Able.hh
|
|
// Description: CCalG4Able will provide the basic functionallity of a CCal
|
|
// "detector" to become a Geant4 Detector.
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef CCalG4Able_h
|
|
#define CCalG4Able_h 1
|
|
|
|
#include <vector>
|
|
#include "G4VPhysicalVolume.hh"
|
|
#include "G4LogicalVolume.hh"
|
|
#include "globals.hh"
|
|
|
|
#include "CCalVisualisable.hh"
|
|
|
|
#include <iostream>
|
|
|
|
//Forward declartion for the CCalG4AbleTable typedef
|
|
class CCalG4Able;
|
|
|
|
//A table to hold a list of pointers to CMS Detectors
|
|
typedef std::vector<CCalG4Able*> CCalG4AbleTable;
|
|
|
|
////////////////////
|
|
//At last the class
|
|
class CCalG4Able {
|
|
|
|
friend std::ostream& operator<<(std::ostream&, const CCalG4Able&);
|
|
|
|
public:
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//Constructor with a name
|
|
CCalG4Able(G4String name);
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//Destructor
|
|
virtual ~CCalG4Able();
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//Get/Set methods
|
|
|
|
//Method to retrieve the physical volume of the detector.
|
|
G4VPhysicalVolume* PhysicalVolume(G4VPhysicalVolume*);
|
|
|
|
//Set the type of a logical volume to select its vis parameters.
|
|
void setVisType(CCalVisualisable::visType, G4LogicalVolume*);
|
|
|
|
//Sensitivity related
|
|
void sensitiveHandling();
|
|
void setSensitivity(G4bool sens=true) {sensitivity=sens;}
|
|
G4bool isSensitive() const {return sensitivity;}
|
|
|
|
//Name
|
|
G4String G4Name() const {return g4ableName;}
|
|
void setName(const G4String& name) {g4ableName = name;}
|
|
|
|
//Comparison operator needed for CCalG4AbleTable. Compares phys. volumes
|
|
G4bool operator==(const CCalG4Able& right) const;
|
|
|
|
protected:
|
|
//A method that allows to add a new CCalG4Able inside this one.
|
|
void AddCCalG4Able(CCalG4Able*);
|
|
|
|
//This method actually constructs the volume. Pure virtual.
|
|
virtual G4VPhysicalVolume* constructIn(G4VPhysicalVolume*) = 0;
|
|
|
|
//Constructs the sensitive detectors and associates them to the corresponding
|
|
//logical volumes
|
|
virtual void constructSensitive() = 0;
|
|
|
|
protected:
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// Data Members
|
|
G4VPhysicalVolume *detPhysicalVolume; //The G4PhysVolume or 0 if not created
|
|
CCalG4AbleTable theG4DetectorsInside; //CCalG4Able* daughters of this det.
|
|
|
|
G4String g4ableName;
|
|
|
|
G4bool sensitivity; //true if sentive, false if not.
|
|
|
|
//Visualisation in G4 related Variables
|
|
CCalVisualisable visProperties; //Visualisation properties.
|
|
G4VisAttributes* g4VisAtt[CCalVisualisable::TotalVisTypes];
|
|
|
|
};
|
|
|
|
#endif
|