]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
attributes fSDManager, fAllLVSensitive, fMessenger, methods Get/SetAllLVSensitive...
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 9 Aug 2001 12:30:52 +0000 (12:30 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 9 Aug 2001 12:30:52 +0000 (12:30 +0000)
AliGeant4/AliSingleModuleConstruction.h

index bd83c1c367dd1c5620dcb8e892eb13d69dff12bf..44baf9e65cb684185df01d48043167e236cd08fd 100644 (file)
@@ -12,8 +12,6 @@
 
 #include <globals.hh>
 
-class AliSingleModuleConstructionMessenger;
-class AliSDManager;
 class AliFiles;
 
 class G4VPhysicalVolume;
@@ -43,35 +41,25 @@ class AliSingleModuleConstruction : public AliModuleConstruction
 
     // set methods
     void SetProcessConfig(G4bool processConfig);
-    void SetAllLVSensitive(G4bool allLVSensitive);
     void SetModuleFrameName(G4String moduleFrameName);
     void SetModuleType(AliModuleType type);
 
     // get methods
     G4int  GetVersion() const;
     AliModuleType GetType() const;
-    G4bool GetAllLVSensitive() const;
     G4bool GetProcessConfig() const;
     
   protected:
     AliSingleModuleConstruction();
 
-  private:
-    // methods
-    void CreateSensitiveDetectors();
-    void CreateSensitiveDetectors1();
-    void CreateSensitiveDetectors2();
-    
+  private:    
     // static data members
     static G4VPhysicalVolume* fgWorld;       //top (world) physical volume
 
     // data members
-    AliSDManager*   fSDManager;      //AliSDManager
     G4int           fVersion;        //module version
     AliModuleType   fType;           //module type (detector/structure)
-    G4bool          fAllLVSensitive; //control for setting sensitive detectors
     G4bool          fProcessConfig;  //control for processing Config.C
-    AliSingleModuleConstructionMessenger*  fMessenger; //messenger
 };             
 
 // inline methods
@@ -85,9 +73,6 @@ inline void AliSingleModuleConstruction::SetWorld(G4VPhysicalVolume* world)
 inline void AliSingleModuleConstruction::SetProcessConfig(G4bool processConfig)
 { fProcessConfig = processConfig; }
 
-inline void AliSingleModuleConstruction::SetAllLVSensitive(G4bool allLVSensitive)
-{ fAllLVSensitive = allLVSensitive; }
-
 inline void AliSingleModuleConstruction::SetModuleFrameName(G4String name)
 { fModuleFrameName = name; }
 
@@ -100,9 +85,6 @@ inline G4int AliSingleModuleConstruction::GetVersion() const
 inline AliModuleType AliSingleModuleConstruction::GetType() const
 { return fType; }
 
-inline G4bool AliSingleModuleConstruction::GetAllLVSensitive() const
-{ return fAllLVSensitive; }
-
 inline G4bool AliSingleModuleConstruction::GetProcessConfig() const
 { return fProcessConfig; }